summaryrefslogtreecommitdiff
path: root/shared/buildInfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'shared/buildInfo.h')
-rw-r--r--shared/buildInfo.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/buildInfo.h b/shared/buildInfo.h
index 7b031dfa..3aed3269 100644
--- a/shared/buildInfo.h
+++ b/shared/buildInfo.h
@@ -10,7 +10,7 @@
namespace Utility
{
//determine build info
-//seems to be safer than checking for _WIN64 (defined on windows for 64-bit compilations only) while _WIN32 is always defined
+//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!)
static const bool is32BitBuild = sizeof(void*) == 4;
static const bool is64BitBuild = sizeof(void*) == 8;
}
bgstack15