We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e299436 commit 7ef574fCopy full SHA for 7ef574f
libc/src/__support/CPP/span.h
@@ -10,7 +10,7 @@
10
11
#include <stddef.h> // For size_t
12
13
-#include "array.h" // For array
+#include "array.h" // For array
14
#include "src/__support/macros/config.h"
15
#include "type_traits.h" // For remove_cv_t, enable_if_t, is_same_v, is_const_v
16
@@ -52,7 +52,7 @@ template <typename T> class span {
52
53
LIBC_INLINE constexpr span() : span_data(nullptr), span_size(0) {}
54
55
- LIBC_INLINE constexpr span(const span&) = default;
+ LIBC_INLINE constexpr span(const span &) = default;
56
57
LIBC_INLINE constexpr span(pointer first, size_type count)
58
: span_data(first), span_size(count) {}
0 commit comments