From 58453a5c4fa2b3e9b010407cb99fcc729bbbe22e Mon Sep 17 00:00:00 2001 From: Erik Schnetter Date: Thu, 4 Apr 2013 14:26:00 -0400 Subject: Requirements: Don't use identifiers starting with an underscore --- Carpet/Requirements/src/location.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Carpet/Requirements') diff --git a/Carpet/Requirements/src/location.hh b/Carpet/Requirements/src/location.hh index 3ee79cd01..4abb31780 100644 --- a/Carpet/Requirements/src/location.hh +++ b/Carpet/Requirements/src/location.hh @@ -14,8 +14,8 @@ namespace Requirements { location_t(): it(-1), vi(-1), tl(-1), rl(-1), m(-1), info("") {} - location_t(int _it, int _vi, int _tl, int _rl, int _m, char const* _info): - it(_it), vi(_vi), tl(_tl), rl(_rl), m(_m), info(_info) + location_t(int it_, int vi_, int tl_, int rl_, int m_, char const* info_): + it(it_), vi(vi_), tl(tl_), rl(rl_), m(m_), info(info_) {} // Output helper void output (ostream& os) const; -- cgit v1.2.3