aboutsummaryrefslogtreecommitdiff
path: root/clang-query/Query.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'clang-query/Query.cpp')
-rw-r--r--clang-query/Query.cpp11
1 files changed, 5 insertions, 6 deletions
diff --git a/clang-query/Query.cpp b/clang-query/Query.cpp
index 74eb6ea4..ed27c211 100644
--- a/clang-query/Query.cpp
+++ b/clang-query/Query.cpp
@@ -65,7 +65,7 @@ struct CollectBoundNodes : MatchFinder::MatchCallback {
}
};
-} // namespace
+} // namespace
bool MatchQuery::run(llvm::raw_ostream &OS, QuerySession &QS) const {
unsigned MatchCount = 0;
@@ -100,11 +100,10 @@ bool MatchQuery::run(llvm::raw_ostream &OS, QuerySession &QS) const {
if (R.isValid()) {
TextDiagnostic TD(OS, AST->getASTContext().getLangOpts(),
&AST->getDiagnostics().getDiagnosticOptions());
- TD.emitDiagnostic(
- R.getBegin(), DiagnosticsEngine::Note,
- "\"" + BI->first + "\" binds here",
- CharSourceRange::getTokenRange(R),
- None, &AST->getSourceManager());
+ TD.emitDiagnostic(R.getBegin(), DiagnosticsEngine::Note,
+ "\"" + BI->first + "\" binds here",
+ CharSourceRange::getTokenRange(R), None,
+ &AST->getSourceManager());
}
break;
}