fix: add space between operator"" and _toml

In C++11, it is required.
This commit is contained in:
ToruNiina 2019-06-03 20:58:35 +09:00
parent 70d0049511
commit a19b94511b

View File

@ -11,7 +11,7 @@ inline namespace literals
inline namespace toml_literals
{
inline ::toml::value operator""_toml(const char* str, std::size_t len)
inline ::toml::value operator"" _toml(const char* str, std::size_t len)
{
::toml::detail::location<std::vector<char>>
loc(/* filename = */ std::string("TOML literal encoded in a C++ code"),