Merge pull request #776 from KLayout/issue-747

No comment skipping in descriptions - fixed #747
This commit is contained in:
Matthias Köfferlein 2021-04-19 22:29:48 +02:00 committed by GitHub
commit 721a4c6246
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -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;

View File

@ -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");
}