summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/clangd/URI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'clang-tools-extra/clangd/URI.cpp')
-rw-r--r--clang-tools-extra/clangd/URI.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/clangd/URI.cpp b/clang-tools-extra/clangd/URI.cpp
index 2a83862495d..64540c66798 100644
--- a/clang-tools-extra/clangd/URI.cpp
+++ b/clang-tools-extra/clangd/URI.cpp
@@ -229,7 +229,7 @@ Expected<std::string> URI::resolvePath(StringRef AbsPath, StringRef HintPath) {
if (!sys::path::is_absolute(AbsPath))
llvm_unreachable(("Not a valid absolute path: " + AbsPath).str().c_str());
for (auto &Entry : URISchemeRegistry::entries()) {
- auto S = Entry.instantiate();
+ auto S = Entry.instantiate();
auto U = S->uriFromAbsolutePath(AbsPath);
// For some paths, conversion to different URI schemes is impossible. These
// should be just skipped.
OpenPOWER on IntegriCloud