From 8f99689ba3a06883df3d3f61a670deebdc4e5598 Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Thu, 6 Aug 2020 16:01:45 +0900 Subject: Remove `mrb_static_assert` from the core; #5051 --- include/mruby.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/mruby.h') diff --git a/include/mruby.h b/include/mruby.h index 5aba2934a..5bbfbb1ad 100644 --- a/include/mruby.h +++ b/include/mruby.h @@ -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" -- cgit v1.2.3