Skip to content

Commit f884a56

Browse files
authored
Remove space between operator"" and _t (#1962)
This should fix a -Wdeprecated-literal-operator instance since this is deprecated as a result of CWG2521 (iiuc C++23).
1 parent e0ebc43 commit f884a56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

httplib.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -3760,7 +3760,7 @@ inline unsigned int str2tag(const std::string &s) {
37603760

37613761
namespace udl {
37623762

3763-
inline constexpr unsigned int operator"" _t(const char *s, size_t l) {
3763+
inline constexpr unsigned int operator""_t(const char *s, size_t l) {
37643764
return str2tag_core(s, l, 0);
37653765
}
37663766

0 commit comments

Comments
 (0)