summaryrefslogtreecommitdiff
path: root/zen/build_info.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:23:19 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:23:19 +0200
commit0887aee8c54d0ed51bb2031431e2bcdafebb4c6e (patch)
tree69537ceb9787bb25ac363cc4e6cdaf0804d78363 /zen/build_info.h
parent5.12 (diff)
downloadFreeFileSync-0887aee8c54d0ed51bb2031431e2bcdafebb4c6e.tar.gz
FreeFileSync-0887aee8c54d0ed51bb2031431e2bcdafebb4c6e.tar.bz2
FreeFileSync-0887aee8c54d0ed51bb2031431e2bcdafebb4c6e.zip
5.13
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