diff options
| author | Ilya Biryukov <ibiryukov@google.com> | 2017-09-20 10:46:58 +0000 |
|---|---|---|
| committer | Ilya Biryukov <ibiryukov@google.com> | 2017-09-20 10:46:58 +0000 |
| commit | 83ca8a2b717c7403fdc3e61c42ad93d43396d892 (patch) | |
| tree | 577a3dabd9d60e6c399325694c8722f0fe1845a3 | |
| parent | 0eb2f30b0b445e4dba4dd3ef921b589743bc1fa9 (diff) | |
| download | bcm5719-llvm-83ca8a2b717c7403fdc3e61c42ad93d43396d892.tar.gz bcm5719-llvm-83ca8a2b717c7403fdc3e61c42ad93d43396d892.zip | |
[clangd] Run clang-format on ClangdUnit.cpp. NFC.
llvm-svn: 313749
| -rw-r--r-- | clang-tools-extra/clangd/ClangdUnit.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/clang-tools-extra/clangd/ClangdUnit.cpp b/clang-tools-extra/clangd/ClangdUnit.cpp index bc80532b5b9..dedf845cf32 100644 --- a/clang-tools-extra/clangd/ClangdUnit.cpp +++ b/clang-tools-extra/clangd/ClangdUnit.cpp @@ -9,6 +9,7 @@ #include "ClangdUnit.h" +#include "Logger.h" #include "clang/Frontend/CompilerInstance.h" #include "clang/Frontend/CompilerInvocation.h" #include "clang/Frontend/FrontendActions.h" @@ -26,7 +27,6 @@ #include "llvm/ADT/SmallVector.h" #include "llvm/Support/CrashRecoveryContext.h" #include "llvm/Support/Format.h" -#include "Logger.h" #include <algorithm> #include <chrono> @@ -894,7 +894,8 @@ PreambleData::PreambleData(PrecompiledPreamble Preamble, std::shared_ptr<CppFile> CppFile::Create(PathRef FileName, tooling::CompileCommand Command, - std::shared_ptr<PCHContainerOperations> PCHs, clangd::Logger &Logger) { + std::shared_ptr<PCHContainerOperations> PCHs, + clangd::Logger &Logger) { return std::shared_ptr<CppFile>( new CppFile(FileName, std::move(Command), std::move(PCHs), Logger)); } |

