Skip to content

Commit

Permalink
The pipelines are running with MSVC version 192930038.
Browse files Browse the repository at this point in the history
  • Loading branch information
pleroy committed Jul 16, 2021
1 parent b29b0b1 commit 7825d99
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion base/not_null_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ TEST_F(NotNullTest, Move) {
_MSC_FULL_VER == 192'829'333 || \
_MSC_FULL_VER == 192'829'337 || \
_MSC_FULL_VER == 192'930'036 || \
_MSC_FULL_VER == 192'930'037)
_MSC_FULL_VER == 192'930'037 || \
_MSC_FULL_VER == 192'930'038)
EXPECT_THAT(*(std::unique_ptr<int> const&)int_ptr1, Eq(3));
#endif
not_null<std::unique_ptr<int>> int_ptr2 = std::move(int_ptr1);
Expand Down
3 changes: 2 additions & 1 deletion numerics/polynomial.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
// seemingly unrelated code in PolynomialTest.VectorSpace.
#define PRINCIPIA_COMPILER_MSVC_HANDLES_POLYNOMIAL_OPERATORS \
!PRINCIPIA_COMPILER_MSVC || !(_MSC_FULL_VER == 192'930'036 || \
_MSC_FULL_VER == 192'930'037)
_MSC_FULL_VER == 192'930'037 || \
_MSC_FULL_VER == 192'930'038)

namespace principia {
namespace numerics {
Expand Down

0 comments on commit 7825d99

Please sign in to comment.