Skip to content

Commit 0de877b

Browse files
committed
make latest clang compiler happy on _span operator
1 parent f21af61 commit 0de877b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/support/Span.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ class Span
206206

207207
inline namespace literals {
208208

209-
inline constexpr Span<const char> operator"" _span(const char * literal, size_t size)
209+
inline constexpr Span<const char> operator""_span(const char * literal, size_t size)
210210
{
211211
return Span<const char>(Unchecked, literal, size);
212212
}

0 commit comments

Comments
 (0)