compilerplugins/clang/typedefparam.cxx |    8 --------
 1 file changed, 8 deletions(-)

New commits:
commit d8f5b8e622f08f1ede5d2287ed5be7fae5724ff9
Author:     Stephan Bergmann <sberg...@redhat.com>
AuthorDate: Tue Mar 5 21:53:47 2019 +0100
Commit:     Noel Grandin <noel.gran...@collabora.co.uk>
CommitDate: Wed Mar 6 06:48:05 2019 +0100

    Remove debugging dump()s
    
    Change-Id: I1f5479adefbf7c77a5584d698c6a6c35ff4716d0
    Reviewed-on: https://gerrit.libreoffice.org/68778
    Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk>
    Tested-by: Noel Grandin <noel.gran...@collabora.co.uk>

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;
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to