We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ccad1a9 + dee78f8 commit 7bbe91cCopy full SHA for 7bbe91c
include/toml11/fwd/literal_fwd.hpp
@@ -19,7 +19,7 @@ inline namespace literals
19
inline namespace toml_literals
20
{
21
22
-::toml::value operator"" _toml(const char* str, std::size_t len);
+::toml::value operator""_toml(const char* str, std::size_t len);
23
24
#if defined(TOML11_HAS_CHAR8_T)
25
// value of u8"" literal has been changed from char to char8_t and char8_t is
include/toml11/impl/literal_impl.hpp
@@ -115,7 +115,7 @@ inline namespace toml_literals
115
116
117
TOML11_INLINE ::toml::value
118
-operator"" _toml(const char* str, std::size_t len)
+operator""_toml(const char* str, std::size_t len)
119
120
if(len == 0)
121
0 commit comments