1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 04:47:34 +00:00

LibCpp: Parse type qualifiers

This commit is contained in:
Itamar 2021-02-28 18:40:45 +02:00 committed by Andreas Kling
parent 71a123148a
commit 5a7abb8363
4 changed files with 34 additions and 5 deletions

View file

@ -160,6 +160,7 @@ private:
RefPtr<TranslationUnit> m_root_node;
NonnullRefPtrVector<ASTNode> m_nodes;
Vector<String> m_errors;
Vector<StringView> parse_type_qualifiers();
};
}