No comment skipping in descriptions - fixed #747

This commit is contained in:
Matthias Koefferlein 2021-04-18 14:36:39 +02:00
parent de83fb7e8a
commit f8b8408adb
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");
}