fix: namespaces of types are now read correctly

This commit is contained in:
TopchetoEU 2022-10-19 16:28:29 +03:00
parent 9aa0063e30
commit a5c9a163f2

View File

@ -16,6 +16,7 @@ class type_parser_t : public parser_t {
while (true) {
if (h.ended()) break;
if (!h.curr().is_operator(operator_t::DOUBLE_COLON)) break;
h.advance("Expected an identifier.");
h.force_push_parse("$_identifier", "Expected an identifier.", nmsp_content);
}