You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
🎨 Don't use nonstandard UDL extension where possible
GCC and clang allow a user-defined literal operator template with the signature:
```cpp
template <typename T, T...> auto operator""_udl();
```
This is a non-standard extension and for our purposes at least it is replaced in
C++20 by using an operator template with a structural NTTP:
```cpp
template <ct_string S> auto operator""_udl();
0 commit comments