From 539bbbe7b516ed8478cf5dc27797cb06c42283f9 Mon Sep 17 00:00:00 2001 From: peter klausler Date: Tue, 16 Mar 2021 16:46:52 -0700 Subject: [PATCH] [flang] Fix build error (unused data member warning) Differential Revision: https://reviews.llvm.org/D98752 --- flang/include/flang/Parser/provenance.h | 1 - 1 file changed, 1 deletion(-) diff --git a/flang/include/flang/Parser/provenance.h b/flang/include/flang/Parser/provenance.h index 56b78a2..7ff475a 100644 --- a/flang/include/flang/Parser/provenance.h +++ b/flang/include/flang/Parser/provenance.h @@ -290,7 +290,6 @@ public: private: AllSources &allSources_; std::list cooked_; // owns all CookedSource instances - int counter_{0}; std::map index_; }; -- 2.7.4