refs #81, remove usage of string_view literal due to vs2017 issue

This commit is contained in:
Steffen Schuemann 2020-12-26 16:57:13 +01:00
parent eef2c2ba55
commit 0962f46650

View File

@ -2701,7 +2701,7 @@ TEST_CASE("std::string_view support", "[filesystem][fs.string_view]")
}
{
auto p = fs::path{"XYZ"};
p /= "Appendix"sv;
p /= std::string_view("Appendix");
CHECK(p == "XYZ/Appendix");
}
#if defined(IS_WCHAR_PATH) || defined(GHC_USE_WCHAR_T)