diff --git a/base/not_null_test.cpp b/base/not_null_test.cpp index b1cd90d079..a852adb11e 100644 --- a/base/not_null_test.cpp +++ b/base/not_null_test.cpp @@ -83,7 +83,8 @@ TEST_F(NotNullTest, Move) { _MSC_FULL_VER == 192'930'147 || \ _MSC_FULL_VER == 193'431'937 || \ _MSC_FULL_VER == 193'431'942 || \ - _MSC_FULL_VER == 193'532'216) + _MSC_FULL_VER == 193'532'216 || \ + _MSC_FULL_VER == 193'532'217) EXPECT_THAT(*(std::unique_ptr const&)int_ptr1, Eq(3)); #endif not_null> int_ptr2 = std::move(int_ptr1); diff --git a/geometry/hilbert.hpp b/geometry/hilbert.hpp index 0915899553..29f0d6ae39 100644 --- a/geometry/hilbert.hpp +++ b/geometry/hilbert.hpp @@ -65,7 +65,8 @@ struct Hilbert>>::Norm( #if !(_MSC_FULL_VER == 193'431'937 || \ _MSC_FULL_VER == 193'431'942 || \ - _MSC_FULL_VER == 193'532'216) + _MSC_FULL_VER == 193'532'216 || \ + _MSC_FULL_VER == 193'532'217) template auto Hilbert(), diff --git a/geometry/permutation_test.cpp b/geometry/permutation_test.cpp index 4970ad0eaa..c9f2f756b2 100644 --- a/geometry/permutation_test.cpp +++ b/geometry/permutation_test.cpp @@ -250,7 +250,8 @@ TEST_F(PermutationTest, SerializationSuccess) { #if PRINCIPIA_COMPILER_MSVC && \ (_MSC_FULL_VER == 193'431'937 || \ _MSC_FULL_VER == 193'431'942 || \ - _MSC_FULL_VER == 193'532'216) + _MSC_FULL_VER == 193'532'216 || \ + _MSC_FULL_VER == 193'532'217) using Perm = std::conditional, PermutationR1R2, diff --git a/ksp_plugin_adapter_stub/ksp_plugin_adapter_stub.dll b/ksp_plugin_adapter_stub/ksp_plugin_adapter_stub.dll index 0b82ee5940..f9798413cf 100644 Binary files a/ksp_plugin_adapter_stub/ksp_plugin_adapter_stub.dll and b/ksp_plugin_adapter_stub/ksp_plugin_adapter_stub.dll differ diff --git a/ksp_plugin_adapter_stub/ksp_plugin_adapter_stub.pdb b/ksp_plugin_adapter_stub/ksp_plugin_adapter_stub.pdb index 3d154872d2..706257f21b 100644 Binary files a/ksp_plugin_adapter_stub/ksp_plugin_adapter_stub.pdb and b/ksp_plugin_adapter_stub/ksp_plugin_adapter_stub.pdb differ diff --git a/numerics/polynomial.hpp b/numerics/polynomial.hpp index 40ebe91ae6..d3f650b759 100644 --- a/numerics/polynomial.hpp +++ b/numerics/polynomial.hpp @@ -29,7 +29,8 @@ _MSC_FULL_VER == 192'930'147 || \ _MSC_FULL_VER == 193'431'937 || \ _MSC_FULL_VER == 193'431'942 || \ - _MSC_FULL_VER == 193'532'216) + _MSC_FULL_VER == 193'532'216 || \ + _MSC_FULL_VER == 193'532'217) namespace principia { namespace numerics {