Skip to content

Commit 6e976ec

Browse files
committed
Removed '/' escaping in SPEF writer w/ estimated RC
Signed-off-by: Jaehyun Kim <jhkim@precisioninno.com>
1 parent ecbe9a5 commit 6e976ec

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

src/dbSta/src/SpefWriter.cc

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,6 @@ std::string escapeSpecial(const std::string& name)
4646
result.replace(pos, 1, "\\$");
4747
pos += 2;
4848
}
49-
pos = 0;
50-
while ((pos = result.find('/', pos)) != std::string::npos) {
51-
result.replace(pos, 1, "\\/");
52-
pos += 2;
53-
}
5449
return result;
5550
}
5651

0 commit comments

Comments
 (0)