aboutsummaryrefslogtreecommitdiff
path: root/src/patch/coords.hh
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-09-16 14:13:42 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-09-16 14:13:42 +0000
commitdeecc38240c8aecb1f6b9ad22d7901b14c77f82e (patch)
tree604bc7b033168f148a3ca328b394464354274731 /src/patch/coords.hh
parent133540dc0b97eff7c395e6f8f37ac97d2db3e188 (diff)
change local_coords::set_* to local_coords::coords_set_*
to reduce the chances of accidental name collisions git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@745 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src/patch/coords.hh')
-rw-r--r--src/patch/coords.hh13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/patch/coords.hh b/src/patch/coords.hh
index 50bd989..0defc3d 100644
--- a/src/patch/coords.hh
+++ b/src/patch/coords.hh
@@ -221,12 +221,13 @@ namespace local_coords
typedef int coords_set;
-static const int set_mu = 0x1;
-static const int set_nu = 0x2;
-static const int set_phi = 0x4;
+static const int coords_set_mu = 0x1;
+static const int coords_set_nu = 0x2;
+static const int coords_set_phi = 0x4;
-static const int set_empty = 0x0;
-static const int set_all = set_mu | set_nu | set_phi;
+static const int coords_set_empty = 0x0;
+static const int coords_set_all
+ = coords_set_mu | coords_set_nu | coords_set_phi;
// human-readable coordinate names for debugging etc
const char* name_of_coords_set(coords_set S);
@@ -234,7 +235,7 @@ const char* name_of_coords_set(coords_set S);
// set complement of coordinates
inline
coords_set coords_set_not(coords_set S)
- { return set_all & ~S; }
+ { return coords_set_all & ~S; }
}; // close namespace local_coords::