diff options
author | Erik Verbruggen <erik.verbruggen@nokia.com> | 2010-02-04 16:31:29 +0100 |
---|---|---|
committer | Erik Verbruggen <erik.verbruggen@nokia.com> | 2010-02-07 10:49:02 +0100 |
commit | 6ca5f5f5f886449f88d1ff7085f640c46bbc8fb2 (patch) | |
tree | ddad79f8d3a8111c63df9c6a7400787e8a345d9f /src/shared/cplusplus/Semantic.h | |
parent | fd90c3503db076b95f2e97455e9e8fcf9c374a88 (diff) | |
download | qt-creator-6ca5f5f5f886449f88d1ff7085f640c46bbc8fb2.tar.gz |
Added semantic checks for compound expressions.
Diffstat (limited to 'src/shared/cplusplus/Semantic.h')
-rw-r--r-- | src/shared/cplusplus/Semantic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/cplusplus/Semantic.h b/src/shared/cplusplus/Semantic.h index 98c6450520..60f82b892e 100644 --- a/src/shared/cplusplus/Semantic.h +++ b/src/shared/cplusplus/Semantic.h @@ -81,7 +81,7 @@ public: void check(DeclarationAST *declaration, Scope *scope, TemplateParameters *templateParameters = 0); - void check(StatementAST *statement, Scope *scope); + FullySpecifiedType check(StatementAST *statement, Scope *scope); const Name *check(NameAST *name, Scope *scope); |