Skip to content

Commit

Permalink
194'234'435
Browse files Browse the repository at this point in the history
  • Loading branch information
eggrobin committed Feb 15, 2025
1 parent ab970d0 commit b26f3f4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
9 changes: 6 additions & 3 deletions geometry/hilbert.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ struct Hilbert<T, T> : not_constructible {
_MSC_FULL_VER == 193'933'523 || \
_MSC_FULL_VER == 194'033'813 || \
_MSC_FULL_VER == 194'134'120 || \
_MSC_FULL_VER == 194'134'123
_MSC_FULL_VER == 194'134'123 || \
_MSC_FULL_VER == 194'234'435
{ // NOLINT
return _grassmann::internal::InnerProduct(t1, t2);
}
Expand All @@ -124,7 +125,8 @@ struct Hilbert<T, T> : not_constructible {
_MSC_FULL_VER == 193'933'523 || \
_MSC_FULL_VER == 194'033'813 || \
_MSC_FULL_VER == 194'134'120 || \
_MSC_FULL_VER == 194'134'123
_MSC_FULL_VER == 194'134'123 || \
_MSC_FULL_VER == 194'234'435
{ // NOLINT
return t.Norm²();
}
Expand All @@ -146,7 +148,8 @@ struct Hilbert<T, T> : not_constructible {
_MSC_FULL_VER == 193'933'523 || \
_MSC_FULL_VER == 194'033'813 || \
_MSC_FULL_VER == 194'134'120 || \
_MSC_FULL_VER == 194'134'123
_MSC_FULL_VER == 194'134'123 || \
_MSC_FULL_VER == 194'234'435
{ // NOLINT
return t.Norm();
}
Expand Down
3 changes: 2 additions & 1 deletion numerics/polynomial_in_чебышёв_basis_body.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@ PolynomialInЧебышёвBasis<Value_, Argument_, std::nullopt>::ReadFromMessag
(_MSC_FULL_VER == 193'933'523 || \
_MSC_FULL_VER == 194'033'813 || \
_MSC_FULL_VER == 194'134'120 || \
_MSC_FULL_VER == 194'134'123)
_MSC_FULL_VER == 194'134'123 || \
_MSC_FULL_VER == 194'234'435)
std::abort();
#endif
}
Expand Down
3 changes: 2 additions & 1 deletion physics/euler_solver_body.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,8 @@ EulerSolver<InertialFrame, PrincipalAxesFrame>::AttitudeAt(
(_MSC_FULL_VER == 193'933'523 || \
_MSC_FULL_VER == 194'033'813 || \
_MSC_FULL_VER == 194'134'120 || \
_MSC_FULL_VER == 194'134'123)
_MSC_FULL_VER == 194'134'123 || \
_MSC_FULL_VER == 194'234'435)
std::abort();
#endif
}
Expand Down

0 comments on commit b26f3f4

Please sign in to comment.