We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bbe91c commit 8594d21Copy full SHA for 8594d21
single_include/toml.hpp
@@ -16691,7 +16691,7 @@ inline namespace literals
16691
inline namespace toml_literals
16692
{
16693
16694
-::toml::value operator"" _toml(const char* str, std::size_t len);
+::toml::value operator""_toml(const char* str, std::size_t len);
16695
16696
#if defined(TOML11_HAS_CHAR8_T)
16697
// value of u8"" literal has been changed from char to char8_t and char8_t is
@@ -16819,7 +16819,7 @@ inline namespace toml_literals
16819
16820
16821
TOML11_INLINE ::toml::value
16822
-operator"" _toml(const char* str, std::size_t len)
+operator""_toml(const char* str, std::size_t len)
16823
16824
if(len == 0)
16825
0 commit comments