Skip to content

Commit

Permalink
Remove space between operator"" and _t (#1962)
Browse files Browse the repository at this point in the history
This should fix a -Wdeprecated-literal-operator instance since this is
deprecated as a result of CWG2521 (iiuc C++23).
  • Loading branch information
pbos authored Oct 15, 2024
1 parent e0ebc43 commit f884a56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion httplib.h
Original file line number Diff line number Diff line change
Expand Up @@ -3760,7 +3760,7 @@ inline unsigned int str2tag(const std::string &s) {

namespace udl {

inline constexpr unsigned int operator"" _t(const char *s, size_t l) {
inline constexpr unsigned int operator""_t(const char *s, size_t l) {
return str2tag_core(s, l, 0);
}

Expand Down

0 comments on commit f884a56

Please sign in to comment.