[clangd] Run clang-format on all clangd sources. NFC.
llvm-svn: 309801
diff --git a/clang-tools-extra/clangd/Protocol.cpp b/clang-tools-extra/clangd/Protocol.cpp
index c370e0d..9d60712 100644
--- a/clang-tools-extra/clangd/Protocol.cpp
+++ b/clang-tools-extra/clangd/Protocol.cpp
@@ -16,11 +16,10 @@
#include "clang/Basic/LLVM.h"
#include "llvm/ADT/SmallString.h"
#include "llvm/Support/Format.h"
-#include "llvm/Support/raw_ostream.h"
#include "llvm/Support/Path.h"
+#include "llvm/Support/raw_ostream.h"
using namespace clang::clangd;
-
URI URI::fromUri(llvm::StringRef uri) {
URI Result;
Result.uri = uri;
@@ -53,9 +52,7 @@
return URI::fromUri(Param->getValue(Storage));
}
-std::string URI::unparse(const URI &U) {
- return "\"" + U.uri + "\"";
-}
+std::string URI::unparse(const URI &U) { return "\"" + U.uri + "\""; }
llvm::Optional<TextDocumentIdentifier>
TextDocumentIdentifier::parse(llvm::yaml::MappingNode *Params) {