[flang] Fix build error (unused data member warning)
authorpeter klausler <pklausler@nvidia.com>
Tue, 16 Mar 2021 23:46:52 +0000 (16:46 -0700)
committerpeter klausler <pklausler@nvidia.com>
Wed, 17 Mar 2021 00:21:09 +0000 (17:21 -0700)
Differential Revision: https://reviews.llvm.org/D98752

flang/include/flang/Parser/provenance.h

index 56b78a2..7ff475a 100644 (file)
@@ -290,7 +290,6 @@ public:
 private:
   AllSources &allSources_;
   std::list<CookedSource> cooked_; // owns all CookedSource instances
-  int counter_{0};
   std::map<CharBlock, const CookedSource &, CharBlockPointerComparator> index_;
 };