From b654dbfa5f3e4a4d02f72023f7c5895635aa6396 Mon Sep 17 00:00:00 2001 From: Daniel Wilhelm Date: Fri, 18 Apr 2014 17:12:17 +0200 Subject: 3.18 --- shared/build_info.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'shared/build_info.h') 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; } -- cgit