Skip to content

Commit 26c32bf

Browse files
committed
Upgrade to 17.14.9.
1 parent 021c77a commit 26c32bf

9 files changed

Lines changed: 19 additions & 10 deletions

base/not_null_test.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,8 @@ TEST_F(NotNullTest, Move) {
9595
_MSC_FULL_VER == 194'134'120 || \
9696
_MSC_FULL_VER == 194'134'123 || \
9797
_MSC_FULL_VER == 194'334'809 || \
98-
_MSC_FULL_VER == 194'435'211)
98+
_MSC_FULL_VER == 194'435'211 || \
99+
_MSC_FULL_VER == 194'435'213)
99100
EXPECT_THAT(*(std::unique_ptr<int> const&)int_ptr1, Eq(3));
100101
#endif
101102
not_null<std::unique_ptr<int>> int_ptr2 = std::move(int_ptr1);

find_msbuild.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
param([switch]$strict = $false)
22

3-
$version = "17.13.4"
3+
$version = "17.14.9"
44
$preview = ""
55

66
if ($preview.length -gt 0) {

geometry/hilbert.hpp

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ struct Hilbert<T1, T2> : not_constructible {
7575
_MSC_FULL_VER == 194'134'120 || \
7676
_MSC_FULL_VER == 194'134'123 || \
7777
_MSC_FULL_VER == 194'334'809 || \
78-
_MSC_FULL_VER == 194'435'211
78+
_MSC_FULL_VER == 194'435'211 || \
79+
_MSC_FULL_VER == 194'435'213
7980
{ // NOLINT
8081
return _grassmann::internal::InnerProduct(t1, t2);
8182
}
@@ -107,7 +108,8 @@ struct Hilbert<T, T> : not_constructible {
107108
_MSC_FULL_VER == 194'134'123 || \
108109
_MSC_FULL_VER == 194'234'435 || \
109110
_MSC_FULL_VER == 194'334'809 || \
110-
_MSC_FULL_VER == 194'435'211
111+
_MSC_FULL_VER == 194'435'211 || \
112+
_MSC_FULL_VER == 194'435'213
111113
{ // NOLINT
112114
return _grassmann::internal::InnerProduct(t1, t2);
113115
}
@@ -132,7 +134,8 @@ struct Hilbert<T, T> : not_constructible {
132134
_MSC_FULL_VER == 194'134'123 || \
133135
_MSC_FULL_VER == 194'234'435 || \
134136
_MSC_FULL_VER == 194'334'809 || \
135-
_MSC_FULL_VER == 194'435'211
137+
_MSC_FULL_VER == 194'435'211 || \
138+
_MSC_FULL_VER == 194'435'213
136139
{ // NOLINT
137140
return t.Norm²();
138141
}
@@ -157,7 +160,8 @@ struct Hilbert<T, T> : not_constructible {
157160
_MSC_FULL_VER == 194'134'123 || \
158161
_MSC_FULL_VER == 194'234'435 || \
159162
_MSC_FULL_VER == 194'334'809 || \
160-
_MSC_FULL_VER == 194'435'211
163+
_MSC_FULL_VER == 194'435'211 || \
164+
_MSC_FULL_VER == 194'435'213
161165
{ // NOLINT
162166
return t.Norm();
163167
}

geometry/hilbert_body.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ auto Hilbert<T, T>::Norm(T const& t) -> NormType {
5151
_MSC_FULL_VER == 194'134'123 || \
5252
_MSC_FULL_VER == 194'234'435 || \
5353
_MSC_FULL_VER == 194'334'809 || \
54-
_MSC_FULL_VER == 194'435'211)
54+
_MSC_FULL_VER == 194'435'211 || \
55+
_MSC_FULL_VER == 194'435'213)
5556
template<typename T1, typename T2>
5657
requires hilbert<T1, T2>
5758
auto Hilbert<T1, T2>::InnerProduct(T1 const& t1, T2 const& t2)
1 KB
Binary file not shown.
0 Bytes
Binary file not shown.

numerics/polynomial_in_чебышёв_basis_body.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,8 @@ PolynomialInЧебышёвBasis<Value_, Argument_, std::nullopt>::ReadFromMessag
118118
_MSC_FULL_VER == 194'134'123 || \
119119
_MSC_FULL_VER == 194'234'435 || \
120120
_MSC_FULL_VER == 194'334'809 || \
121-
_MSC_FULL_VER == 194'435'211)
121+
_MSC_FULL_VER == 194'435'211 || \
122+
_MSC_FULL_VER == 194'435'213)
122123
std::abort();
123124
#endif
124125
}

physics/euler_solver_body.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,8 @@ EulerSolver<InertialFrame, PrincipalAxesFrame>::AttitudeAt(
389389
_MSC_FULL_VER == 194'134'123 || \
390390
_MSC_FULL_VER == 194'234'435 || \
391391
_MSC_FULL_VER == 194'334'809 || \
392-
_MSC_FULL_VER == 194'435'211)
392+
_MSC_FULL_VER == 194'435'211 || \
393+
_MSC_FULL_VER == 194'435'213)
393394
std::abort();
394395
#endif
395396
}

tools/journal_proto_processor.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1950,7 +1950,8 @@ std::string JournalProtoProcessor::MarshalAs(
19501950
(_MSC_FULL_VER == 193'933'523 || \
19511951
_MSC_FULL_VER == 194'033'813 || \
19521952
_MSC_FULL_VER == 194'134'123 || \
1953-
_MSC_FULL_VER == 194'334'809)
1953+
_MSC_FULL_VER == 194'334'809 || \
1954+
_MSC_FULL_VER == 194'435'213)
19541955
std::abort();
19551956
#endif
19561957
}

0 commit comments

Comments
 (0)