Skip to content

Commit 7ef574f

Browse files
committed
clang-format
1 parent e299436 commit 7ef574f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libc/src/__support/CPP/span.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
#include <stddef.h> // For size_t
1212

13-
#include "array.h" // For array
13+
#include "array.h" // For array
1414
#include "src/__support/macros/config.h"
1515
#include "type_traits.h" // For remove_cv_t, enable_if_t, is_same_v, is_const_v
1616

@@ -52,7 +52,7 @@ template <typename T> class span {
5252

5353
LIBC_INLINE constexpr span() : span_data(nullptr), span_size(0) {}
5454

55-
LIBC_INLINE constexpr span(const span&) = default;
55+
LIBC_INLINE constexpr span(const span &) = default;
5656

5757
LIBC_INLINE constexpr span(pointer first, size_type count)
5858
: span_data(first), span_size(count) {}

0 commit comments

Comments
 (0)