File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -228,7 +228,8 @@ elseif (CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
228
228
"/wd4624" #[[Suppress 'derived class' : destructor could not be generated because a base class destructor is inaccessible]]
229
229
"/wd4267" #[[Suppress 'var' : conversion from 'size_t' to 'type', possible loss of data]]
230
230
"/wd4291" #[[Suppress 'declaration' : no matching operator delete found; memory will not be freed if initialization throws an exception]]
231
- "/wd4146" #[[Suppress 'unary minus operator applied to unsigned type, result still unsigned]] )
231
+ "/wd4146" #[[Suppress 'unary minus operator applied to unsigned type, result still unsigned]]
232
+ "/Zc:preprocessor" #[[Enable standards conforming preprocessor - https://learn.microsoft.com/en-us/cpp/build/reference/zc-preprocessor]] )
232
233
list (APPEND AMD_COMGR_PRIVATE_COMPILE_DEFINITIONS _HAS_EXCEPTIONS=0 )
233
234
endif ()
234
235
You can’t perform that action at this time.
0 commit comments