mirror of
https://github.com/greg7mdp/parallel-hashmap.git
synced 2026-08-30 00:50:38 +08:00
fix compilation warnings
This commit is contained in:
Vendored
-2
@@ -3077,11 +3077,9 @@ bool LessThanImpl(Span<T> a, Span<T> b) {
|
||||
// https://bugs.llvm.org/show_bug.cgi?id=27538.
|
||||
template <typename From, typename To>
|
||||
struct IsConvertibleHelper {
|
||||
private:
|
||||
static std::true_type testval(To);
|
||||
static std::false_type testval(...);
|
||||
|
||||
public:
|
||||
using type = decltype(testval(std::declval<From>()));
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user