Bug 1074911 - Remove JS_ASSERT and JS_ASSERT_IF macros. r=jorendorff

This commit is contained in:
Nicolas B. Pierron 2014-10-01 19:17:53 +02:00
parent 98d0cceacd
commit 2f855ebf20

View File

@ -51,9 +51,6 @@ namespace js {}
#define JS_SWEPT_FRAME_PATTERN 0x5b
#define JS_POISONED_FORKJOIN_CHUNK 0xBD
#define JS_ASSERT(expr) MOZ_ASSERT(expr)
#define JS_ASSERT_IF(cond, expr) MOZ_ASSERT_IF(cond, expr)
#define JS_STATIC_ASSERT(cond) static_assert(cond, "JS_STATIC_ASSERT")
#define JS_STATIC_ASSERT_IF(cond, expr) MOZ_STATIC_ASSERT_IF(cond, expr, "JS_STATIC_ASSERT_IF")