[svn:parrot] r38736 - trunk/include/parrot
petdance at svn.parrot.org
petdance at svn.parrot.org
Wed May 13 04:03:43 UTC 2009
Author: petdance
Date: Wed May 13 04:03:33 2009
New Revision: 38736
URL: https://trac.parrot.org/parrot/changeset/38736
Log:
disappear the assertions if we run under splint
Modified:
trunk/include/parrot/exceptions.h
Modified: trunk/include/parrot/exceptions.h
==============================================================================
--- trunk/include/parrot/exceptions.h Wed May 13 03:41:21 2009 (r38735)
+++ trunk/include/parrot/exceptions.h Wed May 13 04:03:33 2009 (r38736)
@@ -291,6 +291,11 @@
#endif /* NDEBUG */
+#ifdef S_SPLINT_S
+# define PARROT_ASSERT(x)
+# define PARROT_ASSERT_ARG(x)
+# define ASSERT_ARGS(a)
+#endif
#endif /* PARROT_EXCEPTIONS_H_GUARD */
More information about the parrot-commits
mailing list