diff options
author | Nicola Zaghen <nicola.zaghen@imgtec.com> | 2018-05-23 13:57:48 +0000 |
---|---|---|
committer | Nicola Zaghen <nicola.zaghen@imgtec.com> | 2018-05-23 13:57:48 +0000 |
commit | c9fed1353a156e05c83facd93884a92ba544022a (patch) | |
tree | cb4f6a40ec781973bffd42e2df843becd215a598 /clang-tools-extra/clangd/CodeComplete.cpp | |
parent | 9581c331d29ed51015f8faa8167a39fda43d4e75 (diff) | |
download | bcm5719-llvm-c9fed1353a156e05c83facd93884a92ba544022a.tar.gz bcm5719-llvm-c9fed1353a156e05c83facd93884a92ba544022a.zip |
Replace last DEBUG occurrence with LLVM_DEBUG.
llvm-svn: 333083
Diffstat (limited to 'clang-tools-extra/clangd/CodeComplete.cpp')
-rw-r--r-- | clang-tools-extra/clangd/CodeComplete.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/clang-tools-extra/clangd/CodeComplete.cpp b/clang-tools-extra/clangd/CodeComplete.cpp index af220f220d4..51186689341 100644 --- a/clang-tools-extra/clangd/CodeComplete.cpp +++ b/clang-tools-extra/clangd/CodeComplete.cpp @@ -1004,11 +1004,11 @@ private: Scores.symbolScore = Scores.filterScore ? Scores.finalScore / Scores.filterScore : QualScore; - DEBUG(llvm::dbgs() << "CodeComplete: " << C.Name - << (IndexResult ? " (index)" : "") - << (SemaResult ? " (sema)" : "") << " = " - << Scores.finalScore << "\n" - << Quality << Relevance << "\n"); + LLVM_DEBUG(llvm::dbgs() + << "CodeComplete: " << C.Name << (IndexResult ? " (index)" : "") + << (SemaResult ? " (sema)" : "") << " = " << Scores.finalScore + << "\n" + << Quality << Relevance << "\n"); NSema += bool(SemaResult); NIndex += bool(IndexResult); |