mirror of
https://github.com/greg7mdp/parallel-hashmap.git
synced 2026-08-30 00:50:38 +08:00
cleanup some warnings
This commit is contained in:
Vendored
+2
-2
@@ -3142,8 +3142,8 @@ public:
|
||||
static const size_type npos = ~(size_type(0));
|
||||
|
||||
constexpr Span() noexcept : Span(nullptr, 0) {}
|
||||
constexpr Span(pointer array, size_type length) noexcept
|
||||
: ptr_(array), len_(length) {}
|
||||
constexpr Span(pointer array, size_type lgth) noexcept
|
||||
: ptr_(array), len_(lgth) {}
|
||||
|
||||
// Implicit conversion constructors
|
||||
template <size_t N>
|
||||
|
||||
Reference in New Issue
Block a user