From 4e98fbf31554cec5acf5f450ebf59513c3658cf0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20Sch=C3=BCmann?= Date: Fri, 22 Mar 2019 22:42:23 +0100 Subject: [PATCH] Fix compile error on Windows test. --- test/filesystem_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/filesystem_test.cpp b/test/filesystem_test.cpp index a985dc0..d779606 100644 --- a/test/filesystem_test.cpp +++ b/test/filesystem_test.cpp @@ -463,7 +463,7 @@ TEST_CASE("30.10.8.4.7 path generic format observers", "[filesystem][path][fs.pa #ifdef GHC_OS_WINDOWS CHECK(fs::u8path("\xc3\xa4\\\xe2\x82\xac").generic_string() == std::string("\xc3\xa4/\xe2\x82\xac")); #ifndef USE_STD_FS - auto t = fs::u8path("\xc3\xa4\\\xe2\x82\xac").generic_string, TestAllocator>() + auto t = fs::u8path("\xc3\xa4\\\xe2\x82\xac").generic_string, TestAllocator>(); CHECK(t.c_str() == std::string("\xc3\xa4/\xe2\x82\xac")); #endif CHECK(fs::u8path("\xc3\xa4\\\xe2\x82\xac").generic_wstring() == std::wstring(L"\U000000E4/\U000020AC"));