Fixed the fix.

This commit is contained in:
Matthias Koefferlein 2021-12-17 08:18:35 +01:00
parent e1df15a47f
commit 219fbceb28
1 changed files with 2 additions and 2 deletions

View File

@ -28,8 +28,8 @@
static std::string np (const std::string &s) static std::string np (const std::string &s)
{ {
return tl::replaced (s, "\\\\", "/"); std::string t = tl::replaced (s, "\\\\", "/");
return tl::replaced (s, "\\", "/"); return tl::replaced (t, "\\", "/");
} }
TEST(1_simple) TEST(1_simple)