summaryrefslogtreecommitdiff
path: root/shared/build_info.h
diff options
context:
space:
mode:
Diffstat (limited to 'shared/build_info.h')
-rw-r--r--shared/build_info.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/build_info.h b/shared/build_info.h
index e398a8a0..c3be26bd 100644
--- a/shared/build_info.h
+++ b/shared/build_info.h
@@ -10,7 +10,7 @@
namespace util
{
//determine build info
-//seems to be safer than checking for _WIN64 (defined on windows for 64-bit compilations only) while _WIN32 is always defined (even for x64 compiler!)
+//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;
}
bgstack15