diff options
author | Roberto Raggi <roberto.raggi@nokia.com> | 2010-03-25 12:15:38 +0100 |
---|---|---|
committer | Roberto Raggi <roberto.raggi@nokia.com> | 2010-03-25 12:16:18 +0100 |
commit | fe261bc256abb3e470a0e33a4b7569307e973db5 (patch) | |
tree | 6f359760d060f3a347e060ae4647ac92639ef252 /src/shared/cplusplus/ASTMatcher.h | |
parent | 1bdae0815d20f9a93c57b14f52dd69a808b739c6 (diff) | |
download | qt-creator-fe261bc256abb3e470a0e33a4b7569307e973db5.tar.gz |
Parse C++ 0x argument packs.
Diffstat (limited to 'src/shared/cplusplus/ASTMatcher.h')
-rw-r--r-- | src/shared/cplusplus/ASTMatcher.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shared/cplusplus/ASTMatcher.h b/src/shared/cplusplus/ASTMatcher.h index d3fcab5dcf..7179328771 100644 --- a/src/shared/cplusplus/ASTMatcher.h +++ b/src/shared/cplusplus/ASTMatcher.h @@ -176,6 +176,7 @@ public: virtual bool match(LambdaDeclaratorAST *node, LambdaDeclaratorAST *pattern); virtual bool match(CaptureAST *node, CaptureAST *pattern); virtual bool match(TrailingReturnTypeAST *node, TrailingReturnTypeAST *pattern); + virtual bool match(BracedInitializerAST *node, BracedInitializerAST *pattern); }; } // end of namespace CPlusPlus |