build: clang-13 support added

This commit is contained in:
Mateusz Pusz
2021-08-10 13:54:39 +02:00
parent b2e98808c4
commit e6cfd4e69b
2 changed files with 21 additions and 4 deletions

View File

@@ -75,7 +75,7 @@ public:
uncertainty_type uncertainty;
};
#if UNITS_COMP_CLANG == 12 || UNITS_COMP_MSVC
#if UNITS_COMP_CLANG <= 13 || UNITS_COMP_MSVC
template<QuantityOrQuantityPoint QQP, units::Quantity U>
estimation(state<QQP>, U) -> estimation<QQP>;

View File

@@ -66,9 +66,10 @@
#endif
#if UNITS_COMP_CLANG == 12 && UNITS_LIBCXX
#if UNITS_LIBCXX
#if UNITS_COMP_CLANG == 12
#include <concepts/compare.hpp>
#include <concepts/concepts.hpp>
#include <range/v3/functional/comparisons.hpp>
#include <range/v3/iterator.hpp>
@@ -76,6 +77,12 @@
#include <range/v3/algorithm/lower_bound.hpp>
#include <range/v3/algorithm/transform.hpp>
#elif UNITS_COMP_CLANG == 13
#include <range/v3/functional/comparisons.hpp>
#endif
#endif
#include <concepts>
@@ -99,7 +106,9 @@ namespace std {
template<class T>
concept default_constructible = constructible_from<T>;
#elif UNITS_COMP_CLANG && UNITS_LIBCXX
#elif UNITS_LIBCXX
#if UNITS_COMP_CLANG == 12
// concepts
using concepts::common_with;
@@ -209,6 +218,14 @@ constexpr bool in_range(T t) noexcept
std::cmp_less_equal(t, std::numeric_limits<R>::max());
}
#elif UNITS_COMP_CLANG == 13
using concepts::three_way_comparable;
using concepts::three_way_comparable_with;
using ::ranges::compare_three_way;
#endif
#endif
} // namespace std