mirror of https://github.com/KLayout/klayout.git
Fixed the fix.
This commit is contained in:
parent
e1df15a47f
commit
219fbceb28
|
|
@ -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)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue