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 293e112 commit 80e0e70Copy full SHA for 80e0e70
libc/src/__support/CPP/string_view.h
@@ -62,7 +62,8 @@ class string_view {
62
63
// special value equal to the maximum value representable by the type
64
// size_type.
65
- LIBC_INLINE_VAR static constexpr size_t npos = cpp::numeric_limits<size_t>::max();
+ LIBC_INLINE_VAR static constexpr size_t npos =
66
+ cpp::numeric_limits<size_t>::max();
67
68
LIBC_INLINE constexpr string_view() : Data(nullptr), Len(0) {}
69
0 commit comments