Skip to content

Commit

Permalink
Another shadowed var from CI
Browse files Browse the repository at this point in the history
  • Loading branch information
pramsey committed Jun 9, 2022
1 parent 856e15b commit de8d959
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions util/geosop/GeosOp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -166,11 +166,11 @@ GeosOp::~GeosOp() {
class comma_numpunct : public std::numpunct<char>
{
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;
Expand Down

0 comments on commit de8d959

Please sign in to comment.