Skip to content

Commit

Permalink
refs #81, remove usage of string_view literal due to vs2017 issue
Browse files Browse the repository at this point in the history
  • Loading branch information
gulrak committed Dec 26, 2020
1 parent eef2c2b commit 0962f46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/filesystem_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 0962f46

Please sign in to comment.