mirror of
https://github.com/yhirose/cpp-httplib
synced 2024-11-21 06:26:02 -07:00
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).
This commit is contained in:
parent
e0ebc431dc
commit
f884a56258
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue