aboutsummaryrefslogtreecommitdiff
path: root/src/patch
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-10-07 23:05:39 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-10-07 23:05:39 +0000
commitc018ec122fc7da47cde522a8beb518a3deaaaa8b (patch)
tree11c60e1aff30b30ba906727474c1678f9f9ec045 /src/patch
parent8a5de99cbfe223c1564f95b7d900bc7abd8eeb07 (diff)
remove unneeded ; in
namespace jtutil { ... }; (icc warns about this) git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@810 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src/patch')
-rw-r--r--src/patch/coords.hh6
-rw-r--r--src/patch/patch_system_info.hh12
2 files changed, 9 insertions, 9 deletions
diff --git a/src/patch/coords.hh b/src/patch/coords.hh
index 61ec3b0..f3fd94a 100644
--- a/src/patch/coords.hh
+++ b/src/patch/coords.hh
@@ -115,7 +115,7 @@ bool fuzzy_EQ_dang(fp dang1, fp dang2); // degrees
fp modulo_reduce_ang(fp ang, fp min_ang, fp max_ang);
fp modulo_reduce_dang(fp dang, fp min_dang, fp max_dang);
- }; // close namespace local_coords::
+ } // close namespace local_coords::
//*****************************************************************************
@@ -202,7 +202,7 @@ void nu_phi_of_theta_phi(fp ps_theta, fp ps_phi, fp& nu, fp& phi);
void xyzcos_of_mu_nu (fp mu, fp nu , fp& xcos, fp& ycos, fp& zcos);
void xyzcos_of_mu_phi(fp mu, fp phi, fp& xcos, fp& ycos, fp& zcos);
void xyzcos_of_nu_phi(fp nu, fp phi, fp& xcos, fp& ycos, fp& zcos);
- }; // close namespace local_coords::
+ } // close namespace local_coords::
//*****************************************************************************
@@ -237,7 +237,7 @@ inline
coords_set coords_set_not(coords_set S)
{ return coords_set_all & ~S; }
- }; // close namespace local_coords::
+ } // close namespace local_coords::
//******************************************************************************
diff --git a/src/patch/patch_system_info.hh b/src/patch/patch_system_info.hh
index 79f2b7a..ef4eb9f 100644
--- a/src/patch/patch_system_info.hh
+++ b/src/patch/patch_system_info.hh
@@ -45,7 +45,7 @@ namespace full_sphere
{"-z", patch::patch_is_minus, 'z', 135.0, 225.0, 135.0, 225.0},
};
static const int N_patches = sizeof(patch_info_array) / sizeof(patch_info);
- }; // namespace patch_system_info::full_sphere
+ } // namespace patch_system_info::full_sphere
//
// +z hemisphere (half) patch system
@@ -71,7 +71,7 @@ namespace plus_z_hemisphere
{"-y", patch::patch_is_minus, 'y', -90.0, -45.0, -135.0, -45.0},
};
static const int N_patches = sizeof(patch_info_array) / sizeof(patch_info);
- }; // namespace patch_system_info::plus_z_hemisphere
+ } // namespace patch_system_info::plus_z_hemisphere
//
// +[xy] "vertical" quarter-grid (quadrant) patch system
@@ -94,7 +94,7 @@ namespace plus_xy_quadrant
{"-z", patch::patch_is_minus, 'z', 135.0, 180.0, 135.0, 180.0},
};
static const int N_patches = sizeof(patch_info_array) / sizeof(patch_info);
- }; // namespace patch_system_info::plus_xy_quadrant
+ } // namespace patch_system_info::plus_xy_quadrant
//
// +[xz] "horizontal" quarter-grid (quadrant) patch system
@@ -118,7 +118,7 @@ namespace plus_xz_quadrant
{"-y", patch::patch_is_minus, 'y', -90.0, -45.0, -90.0, -45.0},
};
static const int N_patches = sizeof(patch_info_array) / sizeof(patch_info);
- }; // namespace patch_system_info::plus_xz_quadrant
+ } // namespace patch_system_info::plus_xz_quadrant
//
// +[xyz] (octant) patch system
@@ -137,6 +137,6 @@ namespace plus_xyz_octant
{"+y", patch::patch_is_plus, 'y', 45.0, 90.0, 45.0, 90.0},
};
static const int N_patches = sizeof(patch_info_array) / sizeof(patch_info);
- }; // namespace patch_system_info::octant
+ } // namespace patch_system_info::octant
-}; // namespace patch_system_info::
+} // namespace patch_system_info::