Remove whitespace in operator"" _a

Clang 18 warns about this whitespace.

Resolves #3607
This commit is contained in:
Dana Jansens 2023-08-23 02:44:06 -04:00 committed by GitHub
parent 0bffed8957
commit d376f1943f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4428,7 +4428,7 @@ template <detail_exported::fixed_string Str> constexpr auto operator""_a() {
return detail::udl_arg<char_t, sizeof(Str.data) / sizeof(char_t), Str>(); return detail::udl_arg<char_t, sizeof(Str.data) / sizeof(char_t), Str>();
} }
# else # else
constexpr auto operator"" _a(const char* s, size_t) -> detail::udl_arg<char> { constexpr auto operator""_a(const char* s, size_t) -> detail::udl_arg<char> {
return {s}; return {s};
} }
# endif # endif