From a19b94511b35748eb63872c305c16a9ec83868cb Mon Sep 17 00:00:00 2001 From: ToruNiina Date: Mon, 3 Jun 2019 20:58:35 +0900 Subject: [PATCH] fix: add space between operator"" and _toml In C++11, it is required. --- toml/literal.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toml/literal.hpp b/toml/literal.hpp index 0e61cc9..fb47014 100644 --- a/toml/literal.hpp +++ b/toml/literal.hpp @@ -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> loc(/* filename = */ std::string("TOML literal encoded in a C++ code"),