1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 16:47:44 +00:00

LibCpp: Consume attribute specification when parsing

Consume __atribute__(...), without actually parsing its content.
This commit is contained in:
Itamar 2021-03-01 22:32:42 +02:00 committed by Andreas Kling
parent 5a7abb8363
commit 5c79297b2c
2 changed files with 32 additions and 0 deletions

View file

@ -161,6 +161,8 @@ private:
NonnullRefPtrVector<ASTNode> m_nodes;
Vector<String> m_errors;
Vector<StringView> parse_type_qualifiers();
bool match_attribute_specification();
void consume_attribute_specification();
};
}