test: remove needless u8s from ascii characters

This commit is contained in:
ToruNiina
2020-09-16 21:25:04 +09:00
parent a32cd6cb61
commit c205c762fe
5 changed files with 31 additions and 71 deletions

View File

@@ -5,7 +5,7 @@
int main()
{
using namespace toml::literals::toml_literals;
const auto data = u8R"(windows = "defines min and max as a macro")"_toml;
const auto data = R"(windows = "defines min and max as a macro")"_toml;
std::cout << toml::find<std::string>(data, "windows") << std::endl;
return 0;