[llvm] [clang] [clang][DependencyScanner] Remove unused -ivfsoverlay files (PR #73734)
Michael Spencer via cfe-commits
cfe-commits at lists.llvm.org
Wed Nov 29 13:16:09 PST 2023
================
@@ -498,11 +518,18 @@ class NamedNodeOrError {
} // namespace detail
/// An in-memory file system.
-class InMemoryFileSystem : public FileSystem {
+class InMemoryFileSystem : public RTTIExtends<InMemoryFileSystem, FileSystem> {
std::unique_ptr<detail::InMemoryDirectory> Root;
std::string WorkingDirectory;
bool UseNormalizedPaths = true;
+public:
+ static const char ID;
+ using GetFileContentsCallback =
----------------
Bigcheese wrote:
Ah, looks like it snuck in while rebasing.
https://github.com/llvm/llvm-project/pull/73734
More information about the cfe-commits
mailing list