From 219fbceb28b2990c56442b2cca8f457042c1b762 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Fri, 17 Dec 2021 08:18:35 +0100 Subject: [PATCH] Fixed the fix. --- src/tl/unit_tests/tlIncludeTests.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tl/unit_tests/tlIncludeTests.cc b/src/tl/unit_tests/tlIncludeTests.cc index cad6fc58e..efa6e8f04 100644 --- a/src/tl/unit_tests/tlIncludeTests.cc +++ b/src/tl/unit_tests/tlIncludeTests.cc @@ -28,8 +28,8 @@ static std::string np (const std::string &s) { - return tl::replaced (s, "\\\\", "/"); - return tl::replaced (s, "\\", "/"); + std::string t = tl::replaced (s, "\\\\", "/"); + return tl::replaced (t, "\\", "/"); } TEST(1_simple)