mirror of https://github.com/KLayout/klayout.git
Merge pull request #776 from KLayout/issue-747
No comment skipping in descriptions - fixed #747
This commit is contained in:
commit
721a4c6246
|
|
@ -146,7 +146,7 @@ public:
|
|||
error (tl::to_string (tr ("Unexpected end of file")));
|
||||
}
|
||||
|
||||
std::string l = get_line ();
|
||||
std::string l = m_input_stream.get_line ();
|
||||
if (l.size () > 3 && l[0] == 'W' && l[1] == 'E' && isdigit (l[2])) {
|
||||
|
||||
size_t n = 0;
|
||||
|
|
|
|||
|
|
@ -76,3 +76,8 @@ TEST(2)
|
|||
{
|
||||
run_rve_test (_this, "rve2.db", "rve2_au.txt");
|
||||
}
|
||||
|
||||
TEST(3)
|
||||
{
|
||||
run_rve_test (_this, "rve3.db", "rve3_au.txt");
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue