[PATCH] D47060: [VFS] Implement getRealPath for OverlayFileSystem.
Benjamin Kramer via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri May 18 06:05:28 PDT 2018
bkramer accepted this revision.
bkramer added a comment.
This revision is now accepted and ready to land.
lg
================
Comment at: lib/Basic/VirtualFileSystem.cpp:387
+ SmallVectorImpl<char> &Output) const {
+ // Not using overlays_begin/end because this method is const.
+ for (auto I = FSList.rbegin(), E = FSList.rend(); I != E; ++I) {
----------------
Those should probably get const overloads. Doesn't have to be in this change though.
Repository:
rC Clang
https://reviews.llvm.org/D47060
More information about the cfe-commits
mailing list