diff options
author | Erik Verbruggen <erik.verbruggen@nokia.com> | 2010-02-08 15:32:37 +0100 |
---|---|---|
committer | Erik Verbruggen <erik.verbruggen@nokia.com> | 2010-02-08 15:41:18 +0100 |
commit | 1af05166d956526728db448cfe34a98ee0e74e8f (patch) | |
tree | 39aabcd58c060040fe413d4b02ac1250f40a2c72 /src/shared/cplusplus/ASTMatch0.cpp | |
parent | bd1b9e6ccb3fb9c1e02df6644e2e50e4e0c5e5ee (diff) | |
download | qt-creator-1af05166d956526728db448cfe34a98ee0e74e8f.tar.gz |
Removed Q_DECLARE_FLAGS parsing, leaving it to the CPP to expand it.
Diffstat (limited to 'src/shared/cplusplus/ASTMatch0.cpp')
-rw-r--r-- | src/shared/cplusplus/ASTMatch0.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/shared/cplusplus/ASTMatch0.cpp b/src/shared/cplusplus/ASTMatch0.cpp index 74d0aa6e5e..a2fcf8e0b9 100644 --- a/src/shared/cplusplus/ASTMatch0.cpp +++ b/src/shared/cplusplus/ASTMatch0.cpp @@ -153,14 +153,6 @@ bool QtFlagsDeclarationAST::match0(AST *pattern, ASTMatcher *matcher) return false; } -bool QtDeclareFlagsDeclarationAST::match0(AST *pattern, ASTMatcher *matcher) -{ - if (QtDeclareFlagsDeclarationAST *_other = pattern->asQtDeclareFlagsDeclaration()) - return matcher->match(this, _other); - - return false; -} - bool AsmDefinitionAST::match0(AST *pattern, ASTMatcher *matcher) { if (AsmDefinitionAST *_other = pattern->asAsmDefinition()) |