diff options
Diffstat (limited to 'compilerplugins')
-rw-r--r-- | compilerplugins/clang/typedefparam.cxx | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/compilerplugins/clang/typedefparam.cxx b/compilerplugins/clang/typedefparam.cxx index b3fa70f97532..8c96aa62576e 100644 --- a/compilerplugins/clang/typedefparam.cxx +++ b/compilerplugins/clang/typedefparam.cxx @@ -62,8 +62,6 @@ bool TypedefParam::VisitFunctionDecl(FunctionDecl const* functionDecl) report(DiagnosticsEngine::Note, "declaration site here", compat::getBeginLoc(canonicalDecl)) << canonicalDecl->getSourceRange(); - thisParam->getType()->dump(); - canonicalParam->getType()->dump(); } } @@ -77,8 +75,6 @@ bool TypedefParam::VisitFunctionDecl(FunctionDecl const* functionDecl) << functionDecl->getSourceRange(); report(DiagnosticsEngine::Note, "declaration site here", compat::getBeginLoc(canonicalDecl)) << canonicalDecl->getSourceRange(); - functionDecl->getReturnType()->dump(); - canonicalDecl->getReturnType()->dump(); } return true; } @@ -122,8 +118,6 @@ bool TypedefParam::VisitCXXMethodDecl(CXXMethodDecl const* methodDecl) report(DiagnosticsEngine::Note, "super-class method here", compat::getBeginLoc(superMethodDecl)) << superMethodDecl->getSourceRange(); - parmVarDecl->getType()->dump(); - superParmVarDecl->getType()->dump(); } ++i; } @@ -142,8 +136,6 @@ bool TypedefParam::VisitCXXMethodDecl(CXXMethodDecl const* methodDecl) report(DiagnosticsEngine::Note, "super-class method here", compat::getBeginLoc(superMethodDecl)) << superMethodDecl->getSourceRange(); - returnType->dump(); - superMethodDecl->getReturnType()->dump(); } } return true; |