diff options
author | Roberto Raggi <roberto.raggi@nokia.com> | 2010-08-09 15:18:50 +0200 |
---|---|---|
committer | Roberto Raggi <roberto.raggi@nokia.com> | 2010-08-09 15:19:10 +0200 |
commit | a9e980c0c7980a3ddaed94a0c768e2da13f2db9b (patch) | |
tree | 259b833451cb6f158c4084d60f634078d7e1e2bb /src/shared/cplusplus/CheckDeclarator.cpp | |
parent | 17bab9dce90f9c12d2982b3e5c28cfa17929aa63 (diff) | |
download | qt-creator-a9e980c0c7980a3ddaed94a0c768e2da13f2db9b.tar.gz |
Apply the decl specifiers.
Diffstat (limited to 'src/shared/cplusplus/CheckDeclarator.cpp')
-rw-r--r-- | src/shared/cplusplus/CheckDeclarator.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/shared/cplusplus/CheckDeclarator.cpp b/src/shared/cplusplus/CheckDeclarator.cpp index 013f3a308c..d9d51b356e 100644 --- a/src/shared/cplusplus/CheckDeclarator.cpp +++ b/src/shared/cplusplus/CheckDeclarator.cpp @@ -169,9 +169,6 @@ bool CheckDeclarator::visit(FunctionDeclaratorAST *ast) ast->symbol = fun; fun->setReturnType(_fullySpecifiedType); - if (_fullySpecifiedType.isVirtual()) - fun->setVirtual(true); - if (ast->parameters) { DeclarationListAST *parameter_declarations = ast->parameters->parameter_declaration_list; for (DeclarationListAST *decl = parameter_declarations; decl; decl = decl->next) { |