diff options
| author | Krasimir Georgiev <krasimir@google.com> | 2017-02-16 10:53:27 +0000 |
|---|---|---|
| committer | Krasimir Georgiev <krasimir@google.com> | 2017-02-16 10:53:27 +0000 |
| commit | f7de84ab9f0611dee1f07470afda5171055f325d (patch) | |
| tree | fad48b9236811c762af7a955ad897b2f336b7218 | |
| parent | 1b8bfd4b7680606ac442cb15d172b1c1c16c4bff (diff) | |
| download | bcm5719-llvm-f7de84ab9f0611dee1f07470afda5171055f325d.tar.gz bcm5719-llvm-f7de84ab9f0611dee1f07470afda5171055f325d.zip | |
[clangd] Fix Output.log error
llvm-svn: 295305
| -rw-r--r-- | clang-tools-extra/clangd/ProtocolHandlers.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/clangd/ProtocolHandlers.cpp b/clang-tools-extra/clangd/ProtocolHandlers.cpp index 8ec5f4aeab4..b1e636a9a96 100644 --- a/clang-tools-extra/clangd/ProtocolHandlers.cpp +++ b/clang-tools-extra/clangd/ProtocolHandlers.cpp @@ -108,7 +108,7 @@ void TextDocumentOnTypeFormattingHandler::handleMethod( llvm::yaml::MappingNode *Params, StringRef ID) { auto DOTFP = DocumentOnTypeFormattingParams::parse(Params); if (!DOTFP) { - Output.logs() << "Failed to decode DocumentOnTypeFormattingParams!\n"; + Output.log("Failed to decode DocumentOnTypeFormattingParams!\n"); return; } |

