mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-13 00:08:26 -05:00
Add keywords to header lexer of zcg cpp
This commit is contained in:
@ -97,6 +97,11 @@ HeaderParserValue HeaderParserValue::Identifier(const TokenPos pos, std::string*
|
||||
return pv;
|
||||
}
|
||||
|
||||
HeaderParserValue HeaderParserValue::Keyword(const TokenPos pos, const HeaderParserValueType type)
|
||||
{
|
||||
return HeaderParserValue(pos, type);
|
||||
}
|
||||
|
||||
HeaderParserValue HeaderParserValue::TypeName(const TokenPos pos, std::string* typeName)
|
||||
{
|
||||
HeaderParserValue pv(pos, HeaderParserValueType::TYPE_NAME);
|
||||
|
Reference in New Issue
Block a user