[llvm] [clang] [clang][DependencyScanner] Remove unused -ivfsoverlay files (PR #73734)

Jan Svoboda via cfe-commits cfe-commits at lists.llvm.org
Mon Jan 29 13:31:42 PST 2024


================
@@ -9312,6 +9312,19 @@ SourceRange ASTReader::ReadSourceRange(ModuleFile &F, const RecordData &Record,
   return SourceRange(beg, end);
 }
 
+llvm::BitVector ASTReader::ReadBitVector(const RecordData &Record,
+                                         const StringRef Blob) {
+  llvm::BitVector Ret;
----------------
jansvoboda11 wrote:

Can we drop this and turn the assignment to `Ret` below into a declaration?

https://github.com/llvm/llvm-project/pull/73734


More information about the cfe-commits mailing list