- fixed a typo in Code/DataStructs/BitOps.cpp which caused the build

to fail on Windows 64-bit
This commit is contained in:
Paolo Tosco
2016-02-22 22:08:16 +00:00
parent 8266f37529
commit ae55c83fc2

View File

@@ -786,7 +786,7 @@ template void UpdateBitVectFromBinaryText(ExplicitBitVect&, const std::string&);
#include <intrin.h>
#ifdef _WIN64
#define BUILTIN_POPCOUNT_INSTR __popcnt64
#define BUILTIN_POPCOUNT_TYPE BUILTIN_POPCOUNT_TYPE
#define BUILTIN_POPCOUNT_TYPE boost::uint64_t
#else
#define BUILTIN_POPCOUNT_INSTR __popcnt
#define BUILTIN_POPCOUNT_TYPE boost::uint32_t