diff options
author | Itamar <itamar8910@gmail.com> | 2021-02-28 18:40:45 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-03-02 12:50:37 +0100 |
commit | 5a7abb83636f79cb26353f7de007271b83fedcc1 (patch) | |
tree | 13e595de1e109a8e370d54b29f1762e0c06509d9 /Userland/Libraries/LibCpp/Parser.h | |
parent | 71a123148a685e463bdb5fcb40c5e6571c2aaa36 (diff) | |
download | serenity-5a7abb83636f79cb26353f7de007271b83fedcc1.zip |
LibCpp: Parse type qualifiers
Diffstat (limited to 'Userland/Libraries/LibCpp/Parser.h')
-rw-r--r-- | Userland/Libraries/LibCpp/Parser.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibCpp/Parser.h b/Userland/Libraries/LibCpp/Parser.h index 91e3580792..6b28f4a817 100644 --- a/Userland/Libraries/LibCpp/Parser.h +++ b/Userland/Libraries/LibCpp/Parser.h @@ -160,6 +160,7 @@ private: RefPtr<TranslationUnit> m_root_node; NonnullRefPtrVector<ASTNode> m_nodes; Vector<String> m_errors; + Vector<StringView> parse_type_qualifiers(); }; } |