diff options
| author | Roberto Raggi <roberto.raggi@nokia.com> | 2009-10-20 11:21:25 +0200 |
|---|---|---|
| committer | Roberto Raggi <roberto.raggi@nokia.com> | 2009-10-20 11:21:25 +0200 |
| commit | 13675cf6ed022db43f961473f78a97325014fea2 (patch) | |
| tree | 83650fbb6b98eeda15159bb50fdca3a861ce7cc0 /src/shared/cplusplus/CheckSpecifier.cpp | |
| parent | 0a7d402d855cf4d9ce775d3c130ae938470be1cd (diff) | |
| download | qt-creator-13675cf6ed022db43f961473f78a97325014fea2.tar.gz | |
Cleanup the C++ front-end.
Removed CPLUSPLUS_BEGIN/END_NAMESPACE & co and made it possible to compile the parser with CPLUSPLUS_WITHOUT_QT.
Diffstat (limited to 'src/shared/cplusplus/CheckSpecifier.cpp')
| -rw-r--r-- | src/shared/cplusplus/CheckSpecifier.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/cplusplus/CheckSpecifier.cpp b/src/shared/cplusplus/CheckSpecifier.cpp index d4de2c5517..6baef4682e 100644 --- a/src/shared/cplusplus/CheckSpecifier.cpp +++ b/src/shared/cplusplus/CheckSpecifier.cpp @@ -58,7 +58,7 @@ #include "Control.h" #include "Scope.h" -CPLUSPLUS_BEGIN_NAMESPACE +using namespace CPlusPlus; CheckSpecifier::CheckSpecifier(Semantic *semantic) : SemanticCheck(semantic), @@ -420,4 +420,4 @@ bool CheckSpecifier::visit(ObjCTypeNameAST * /*ast*/) return true; } -CPLUSPLUS_END_NAMESPACE + |
