[clang] [llvm] [clang][DependencyScanner] Remove unused -ivfsoverlay files (PR #73734)
Ben Langmuir via cfe-commits
cfe-commits at lists.llvm.org
Wed Nov 29 10:10:58 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 =
----------------
benlangmuir wrote:
Is this callback type used?
https://github.com/llvm/llvm-project/pull/73734
More information about the cfe-commits
mailing list