C++, semicolon, move it entirely to ASTDeclaration

This commit is contained in:
Jakob Lykke Andersen
2020-04-24 10:57:23 +02:00
parent 50ae1b04e8
commit ef0c2bf83c
4 changed files with 35 additions and 16 deletions

View File

@@ -0,0 +1,14 @@
.. cpp:class:: Class;
.. cpp:struct:: Struct;
.. cpp:union:: Union;
.. cpp:function:: void f();
.. cpp:member:: int member;
.. cpp:var:: int var;
.. cpp:type:: Type;
.. cpp:type:: int TypeDef;
.. cpp:type:: Alias = int;
.. cpp:concept:: template<typename T> Concept;
.. cpp:enum:: Enum;
.. cpp:enum-struct:: EnumStruct;
.. cpp:enum-class:: EnumClass;
.. cpp:enumerator:: Enumerator;