Updated definition of _BITMASK_OPS in VS2022 leads to compile error
I am upgrading C++ code from VS2019 to VS2022. My code references _BITMASK_OPS that lives in <type_traits> under MSVC provided by visual studio. (C:\Program Files\Microsoft Visual Studio\2022\Professional\VC\Tools\MSVC\14.37.32822\include\type_traits) In VS2019 the define is: #define _BITMASK_OPS(_BITMASK) In VS2022 it changed to: #define _BITMASK_OPS(_MAYBE_EXPORT, _BITMASK) However I cannot find any information, or any other references, to _MAYBE_EXPORT, other … Read more