File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -403,6 +403,7 @@ if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC")
403403 add_definitions (/wd4244)
404404 add_definitions (/wd4267)
405405 add_definitions (/wd4800) # Performance warning due to automatic compiler casting from int to bool
406+ add_definitions (/wd4334) # Implicit casting for 64-bit shift
406407
407408 # Add preprocessor definitions for proper compilation
408409 add_definitions (-D_WIN32_WINNT=0x0501) # Required for winsock (pre Windows XP wspiapi.h only)
Original file line number Diff line number Diff line change 2020#include " cassandra.h"
2121#include " ref_counted.hpp"
2222
23+ #ifdef _WIN32
24+ # ifdef IGNORE
25+ # undef IGNORE
26+ # endif
27+ #endif
28+
2329namespace cass {
2430
2531class RetryPolicy : public RefCounted <RetryPolicy> {
You can’t perform that action at this time.
0 commit comments