cleanup some warnings

This commit is contained in:
greg
2021-02-01 13:59:03 -05:00
parent 2af41f776f
commit 4a7e130032
3 changed files with 100 additions and 100 deletions
+2 -2
View File
@@ -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>