diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-03-05 21:53:47 +0100 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-03-06 06:48:05 +0100 |
commit | d8f5b8e622f08f1ede5d2287ed5be7fae5724ff9 (patch) | |
tree | 4d5123fe4826bca007c3dc46c7b178d0746458c0 /compilerplugins | |
parent | 83db9afa20b8cf54b522ca9c3f04e7e267684c59 (diff) |
Remove debugging dump()s
Change-Id: I1f5479adefbf7c77a5584d698c6a6c35ff4716d0
Reviewed-on: https://gerrit.libreoffice.org/68778
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
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; |