Kaydet (Commit) d8f5b8e6 authored tarafından Stephan Bergmann's avatar Stephan Bergmann Kaydeden (comit) Noel Grandin

Remove debugging dump()s

Change-Id: I1f5479adefbf7c77a5584d698c6a6c35ff4716d0
Reviewed-on: https://gerrit.libreoffice.org/68778Reviewed-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
Tested-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
üst 83db9afa
...@@ -62,8 +62,6 @@ bool TypedefParam::VisitFunctionDecl(FunctionDecl const* functionDecl) ...@@ -62,8 +62,6 @@ bool TypedefParam::VisitFunctionDecl(FunctionDecl const* functionDecl)
report(DiagnosticsEngine::Note, "declaration site here", report(DiagnosticsEngine::Note, "declaration site here",
compat::getBeginLoc(canonicalDecl)) compat::getBeginLoc(canonicalDecl))
<< canonicalDecl->getSourceRange(); << canonicalDecl->getSourceRange();
thisParam->getType()->dump();
canonicalParam->getType()->dump();
} }
} }
...@@ -77,8 +75,6 @@ bool TypedefParam::VisitFunctionDecl(FunctionDecl const* functionDecl) ...@@ -77,8 +75,6 @@ bool TypedefParam::VisitFunctionDecl(FunctionDecl const* functionDecl)
<< functionDecl->getSourceRange(); << functionDecl->getSourceRange();
report(DiagnosticsEngine::Note, "declaration site here", compat::getBeginLoc(canonicalDecl)) report(DiagnosticsEngine::Note, "declaration site here", compat::getBeginLoc(canonicalDecl))
<< canonicalDecl->getSourceRange(); << canonicalDecl->getSourceRange();
functionDecl->getReturnType()->dump();
canonicalDecl->getReturnType()->dump();
} }
return true; return true;
} }
...@@ -122,8 +118,6 @@ bool TypedefParam::VisitCXXMethodDecl(CXXMethodDecl const* methodDecl) ...@@ -122,8 +118,6 @@ bool TypedefParam::VisitCXXMethodDecl(CXXMethodDecl const* methodDecl)
report(DiagnosticsEngine::Note, "super-class method here", report(DiagnosticsEngine::Note, "super-class method here",
compat::getBeginLoc(superMethodDecl)) compat::getBeginLoc(superMethodDecl))
<< superMethodDecl->getSourceRange(); << superMethodDecl->getSourceRange();
parmVarDecl->getType()->dump();
superParmVarDecl->getType()->dump();
} }
++i; ++i;
} }
...@@ -142,8 +136,6 @@ bool TypedefParam::VisitCXXMethodDecl(CXXMethodDecl const* methodDecl) ...@@ -142,8 +136,6 @@ bool TypedefParam::VisitCXXMethodDecl(CXXMethodDecl const* methodDecl)
report(DiagnosticsEngine::Note, "super-class method here", report(DiagnosticsEngine::Note, "super-class method here",
compat::getBeginLoc(superMethodDecl)) compat::getBeginLoc(superMethodDecl))
<< superMethodDecl->getSourceRange(); << superMethodDecl->getSourceRange();
returnType->dump();
superMethodDecl->getReturnType()->dump();
} }
} }
return true; return true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment