From de8d959a2d3b1f21f0932bfebeb07e2244bb8232 Mon Sep 17 00:00:00 2001 From: Paul Ramsey Date: Thu, 9 Jun 2022 08:07:48 -0700 Subject: [PATCH] Another shadowed var from CI --- util/geosop/GeosOp.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/util/geosop/GeosOp.cpp b/util/geosop/GeosOp.cpp index 340f3b6385..a575fc75f9 100644 --- a/util/geosop/GeosOp.cpp +++ b/util/geosop/GeosOp.cpp @@ -166,11 +166,11 @@ GeosOp::~GeosOp() { class comma_numpunct : public std::numpunct { public: - comma_numpunct(char thousands_sep, const char* grouping) - :m_thousands_sep(thousands_sep), - m_grouping(grouping){} + comma_numpunct(char p_thousands_sep, const char* p_grouping) + :m_thousands_sep(p_thousands_sep), + m_grouping(p_grouping){} protected: - char do_thousands_sep() const{return m_thousands_sep;} + char do_thousands_sep() const {return m_thousands_sep;} std::string do_grouping() const {return m_grouping;} private: char m_thousands_sep;