Bug 712939 - Part 7: Remove JS_STATIC_ASSERT. r=jwalden

Depends on D62278

Differential Revision: https://phabricator.services.mozilla.com/D62280

--HG--
extra : moz-landing-system : lando
This commit is contained in:
André Bargull 2020-02-11 13:09:09 +00:00
parent 0bcaa98062
commit 3065c40f86

View File

@ -30,10 +30,6 @@ namespace mozilla {}
/* The private JS engine namespace. */
namespace js {}
#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")
extern MOZ_NORETURN MOZ_COLD JS_PUBLIC_API void JS_Assert(const char* s,
const char* file,
int ln);