aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-04-10 13:30:37 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-04-10 13:30:37 +0000
commitca8170fae34fbc42f75075f6060718e0432dfd98 (patch)
tree8175697f8c2f6abcc949a68c54a219e32d7f9c2b /src
parentc1687b245fbe3b7349ae3f1d13d48214bd904907 (diff)
oops, we have a *pointer* to other patch interp,
so we want other_patch_interp_->member(), not .member() git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@480 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src')
-rw-r--r--src/patch/ghost_zone.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/patch/ghost_zone.cc b/src/patch/ghost_zone.cc
index 43d75f1..fb70c13 100644
--- a/src/patch/ghost_zone.cc
+++ b/src/patch/ghost_zone.cc
@@ -475,7 +475,7 @@ other_patch_interp_ = new patch_interp(other_edge(),
void interpatch_ghost_zone::assert_fully_setup() const
{
assert(other_patch_interp_ != NULL);
-assert(other_patch() == other_patch_interp_.my_patch());
+assert(other_patch() == other_patch_interp_->my_patch());
assert( other_patch()
.ghost_zone_on_edge(other_edge())
.is_interpatch() );