aboutsummaryrefslogtreecommitdiff
path: root/src/patch/patch.hh
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-03-29 16:03:30 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-03-29 16:03:30 +0000
commit301fec423aa7323a0f1a789bb4368098ebe4397e (patch)
tree2165aca16df2eb2f343c067ca87776d0fea9e158 /src/patch/patch.hh
parentadd194dabe725e4fd5cccb21432a917fc0ee4dc2 (diff)
code-layout tweaks (declarations of data members)
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@396 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src/patch/patch.hh')
-rw-r--r--src/patch/patch.hh24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/patch/patch.hh b/src/patch/patch.hh
index 33bae96..5d63ad4 100644
--- a/src/patch/patch.hh
+++ b/src/patch/patch.hh
@@ -390,27 +390,27 @@ private:
coords_set_tau_;
// edges
- const patch_edge& min_rho_patch_edge_,
- & max_rho_patch_edge_,
- & min_sigma_patch_edge_,
- & max_sigma_patch_edge_;
+ const patch_edge& min_rho_patch_edge_;
+ const patch_edge& max_rho_patch_edge_;
+ const patch_edge& min_sigma_patch_edge_;
+ const patch_edge& max_sigma_patch_edge_;
// ghost zones
// ... pointers are initialized by
// setup_mirror_symmetry_ghost_zone()
// setup_periodic_symmetry_ghost_zone()
// setup_interpatch_ghost_zone()
- ghost_zone *min_rho_ghost_zone_,
- *max_rho_ghost_zone_,
- *min_sigma_ghost_zone_,
- *max_sigma_ghost_zone_;
+ ghost_zone* min_rho_ghost_zone_;
+ ghost_zone* max_rho_ghost_zone_,
+ ghost_zone* min_sigma_ghost_zone_,
+ ghost_zone* max_sigma_ghost_zone_;
// frontiers (NULL pointers if no frontier for this ghost zone)
// ... pointers are initialized by setup_interpatch_ghost_zone()
- patch_frontier *min_rho_patch_frontier_,
- *max_rho_patch_frontier_,
- *min_sigma_patch_frontier_,
- *max_sigma_patch_frontier_;
+ patch_frontier* min_rho_patch_frontier_,
+ patch_frontier* max_rho_patch_frontier_,
+ patch_frontier* min_sigma_patch_frontier_,
+ patch_frontier* max_sigma_patch_frontier_;
};
//*****************************************************************************