aboutsummaryrefslogtreecommitdiffstats
path: root/os/rt/include/chdebug.h
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-08-23 07:57:26 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-08-23 07:57:26 +0000
commit960847273c5015002fff1bb7c483556140746de2 (patch)
tree5f0e8d024143d216301dd3472deb1c3c904ba099 /os/rt/include/chdebug.h
parentb11d97ab581b4b2983b40d36fac8202f18ff0bac (diff)
downloadChibiOS-960847273c5015002fff1bb7c483556140746de2.tar.gz
ChibiOS-960847273c5015002fff1bb7c483556140746de2.tar.bz2
ChibiOS-960847273c5015002fff1bb7c483556140746de2.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6205 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/rt/include/chdebug.h')
-rw-r--r--os/rt/include/chdebug.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/os/rt/include/chdebug.h b/os/rt/include/chdebug.h
index ee49eec00..0fdc865eb 100644
--- a/os/rt/include/chdebug.h
+++ b/os/rt/include/chdebug.h
@@ -175,7 +175,7 @@ typedef struct {
#endif /* !defined(chDbgCheck) */
#else /* !CH_DBG_ENABLE_CHECKS */
-#define chDbgCheck(c) {(void)(c);}
+#define chDbgCheck(c) /*{(void)(c);}*/
#endif /* !CH_DBG_ENABLE_CHECKS */
#if CH_DBG_ENABLE_ASSERTS || defined(__DOXYGEN__)
@@ -200,7 +200,7 @@ typedef struct {
}
#endif /* !defined(chDbgAssert) */
#else /* !CH_DBG_ENABLE_ASSERTS */
-#define chDbgAssert(c, r) {(void)(c);}
+#define chDbgAssert(c, r) /*{(void)(c);}*/
#endif /* !CH_DBG_ENABLE_ASSERTS */
/** @} */