Remove mrb_static_assert from the core; #5051

This commit is contained in:
Yukihiro "Matz" Matsumoto
2020-08-06 16:01:45 +09:00
parent 11cc7bed96
commit 8f99689ba3
3 changed files with 1 additions and 7 deletions
+1 -1
View File
@@ -65,7 +65,7 @@
#if defined __STDC_VERSION__ && __STDC_VERSION__ >= 201112L
#define mrb_static_assert(exp, str) _Static_assert(exp, str)
#else
#define mrb_static_assert(exp, str) mrb_assert(exp)
#define mrb_static_assert(exp, str)
#endif
#include "mrbconf.h"