diff options
Diffstat (limited to 'clang-tools-extra/clangd/URI.h')
-rw-r--r-- | clang-tools-extra/clangd/URI.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/clang-tools-extra/clangd/URI.h b/clang-tools-extra/clangd/URI.h index ff4bc2d31fb..112264f7102 100644 --- a/clang-tools-extra/clangd/URI.h +++ b/clang-tools-extra/clangd/URI.h @@ -107,9 +107,8 @@ public: /// Returns the include path of the file (e.g. <path>, "path"), which can be /// #included directly. See URI::includeSpelling for details. - virtual llvm::Expected<std::string> - getIncludeSpelling(const URI& U) const { - return ""; // no customized include path for this scheme. + virtual llvm::Expected<std::string> getIncludeSpelling(const URI &U) const { + return ""; // no customized include path for this scheme. } }; |