File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -18,12 +18,14 @@ using namespace principia::base::_traits;
1818// At any rate, the multiprecision traits should never be used directly.
1919
2020template <typename T>
21- concept boost_cpp_number = (is_number<T>::value || is_number_expression<T>::value) &&
22- number_category<T>::value != number_kind_unknown;
21+ concept boost_cpp_number =
22+ (is_number<T>::value || is_number_expression<T>::value) &&
23+ number_category<T>::value != number_kind_unknown;
2324
2425template <typename T>
2526concept boost_cpp_bin_float =
26- boost_cpp_number<T> && number_category<T>::value == number_kind_floating_point;
27+ boost_cpp_number<T> &&
28+ number_category<T>::value == number_kind_floating_point;
2729
2830template <typename T>
2931concept boost_cpp_int =
@@ -33,7 +35,6 @@ template<typename T>
3335concept boost_cpp_rational =
3436 boost_cpp_number<T> && number_category<T>::value == number_kind_rational;
3537
36-
3738template <typename T>
3839concept discrete = std::integral<T> || boost_cpp_int<T>;
3940
You can’t perform that action at this time.
0 commit comments