[ci] Revert disable std::mutex constexpr constructor on Windows (#6736)

This commit is contained in:
Ryan Blue
2024-06-12 16:45:59 -04:00
committed by GitHub
parent 3d6b710293
commit d3aa7f85dd
3 changed files with 0 additions and 14 deletions

View File

@@ -53,9 +53,4 @@ macro(wpilib_target_warnings target)
)
target_compile_options(${target} PRIVATE -gz=zlib)
endif()
# Disable std::mutex constexpr constructor on MSCV; Workaround for MSVCP redist mismatch on GHA
if(MSVC)
target_compile_options(${target} PRIVATE /D_DISABLE_CONSTEXPR_MUTEX_CONSTRUCTOR)
endif()
endmacro()