summaryrefslogtreecommitdiff
path: root/zen/build_info.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/build_info.h')
-rw-r--r--zen/build_info.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/zen/build_info.h b/zen/build_info.h
index d69a8c1c..406fef70 100644
--- a/zen/build_info.h
+++ b/zen/build_info.h
@@ -13,6 +13,8 @@ namespace zen
//safer than checking for _WIN64 (defined on windows for 64-bit compilations only) while _WIN32 is always defined (even for x64 compiler!)
static const bool is32BitBuild = sizeof(void*) == 4;
static const bool is64BitBuild = sizeof(void*) == 8;
+
+static_assert(is32BitBuild || is64BitBuild, "");
}
#endif //BUILDINFO_H_INCLUDED
bgstack15