summaryrefslogtreecommitdiff
path: root/zen/build_info.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/build_info.h')
-rwxr-xr-xzen/build_info.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/zen/build_info.h b/zen/build_info.h
index 9b8b7fc0..e80f3721 100755
--- a/zen/build_info.h
+++ b/zen/build_info.h
@@ -16,11 +16,11 @@
#endif
#ifdef ZEN_BUILD_32BIT
- static_assert(sizeof(void*) == 4, "");
+ static_assert(sizeof(void*) == 4);
#endif
#ifdef ZEN_BUILD_64BIT
- static_assert(sizeof(void*) == 8, "");
+ static_assert(sizeof(void*) == 8);
#endif
#endif //BUILD_INFO_H_5928539285603428657
bgstack15