LibCpp: Support parsing enum classes

This commit is contained in:
Itamar 2021-06-20 21:51:53 +03:00 committed by Ali Mohammad Pur
commit c1ee0c1685
Notes: sideshowbarker 2024-07-18 11:23:38 +09:00
2 changed files with 31 additions and 1 deletions

View file

@ -505,6 +505,12 @@ public:
{
}
enum class Type {
RegularEnum,
EnumClass
};
Type type { Type::RegularEnum };
Vector<StringView> m_entries;
};