[PATCH] D154962: [clangd] Use canonical path as resolved path for includes.
Viktoriia Bakalova via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Jul 11 08:36:45 PDT 2023
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG7322f2d5ed54: [clangd] Use canonical path as resolved path for includes. (authored by VitaNuo).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D154962/new/
https://reviews.llvm.org/D154962
Files:
clang-tools-extra/clangd/Headers.cpp
Index: clang-tools-extra/clangd/Headers.cpp
===================================================================
--- clang-tools-extra/clangd/Headers.cpp
+++ clang-tools-extra/clangd/Headers.cpp
@@ -21,6 +21,7 @@
#include "llvm/Support/Path.h"
#include <cstring>
#include <optional>
+#include <string>
namespace clang {
namespace clangd {
@@ -53,8 +54,9 @@
auto &Inc = Out->MainFileIncludes.back();
Inc.Written =
(IsAngled ? "<" + FileName + ">" : "\"" + FileName + "\"").str();
- Inc.Resolved =
- std::string(File ? File->getFileEntry().tryGetRealPathName() : "");
+ Inc.Resolved = std::string(
+ File ? getCanonicalPath(*File, SM.getFileManager()).value_or("")
+ : "");
Inc.HashOffset = SM.getFileOffset(HashLoc);
Inc.HashLine =
SM.getLineNumber(SM.getFileID(HashLoc), Inc.HashOffset) - 1;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D154962.539128.patch
Type: text/x-patch
Size: 890 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20230711/e70f6c7c/attachment.bin>
More information about the cfe-commits
mailing list