C++: Support ellipsis on variadic inheritance parsing

Change-Id: I571aefdb1f2aba88ba0c7710f16b6d8ad2e8f5a8
Reviewed-by: André Hartmann <aha_1980@gmx.de>
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Reviewed-by: Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
This commit is contained in:
Johannes Lorenz
2015-02-25 21:22:16 +01:00
committed by Orgad Shaneh
parent 697479572f
commit 2a966a8917
10 changed files with 79 additions and 3 deletions

View File

@@ -1002,6 +1002,7 @@ public:
unsigned virtual_token;
unsigned access_specifier_token;
NameAST *name;
unsigned ellipsis_token;
public: // annotations
BaseClass *symbol;
@@ -1011,6 +1012,7 @@ public:
: virtual_token(0)
, access_specifier_token(0)
, name(0)
, ellipsis_token(0)
, symbol(0)
{}