aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-09-11 12:12:37 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2002-09-11 12:12:37 +0000
commitcca6822781966537043029c5403d31311f41fb42 (patch)
tree41f4b62a5f610b651e23e7b8bfe82deeb589274c
parenta3dd1b625c0398c6b6a98283373f76d3de91dbe9 (diff)
- add const qualifiers to some patches
- s/"AHFinderDirect.hh"/"driver.hh"/ git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@719 f88db872-0e4f-0410-b76b-b9085cfa78c5
-rw-r--r--src/driver/io.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/driver/io.cc b/src/driver/io.cc
index 94eb5bb..6feead1 100644
--- a/src/driver/io.cc
+++ b/src/driver/io.cc
@@ -41,7 +41,7 @@ using jtutil::error_exit;
#include "../gr/gfns.hh"
#include "../gr/gr.hh"
-#include "AHFinderDirect.hh"
+#include "driver.hh"
//******************************************************************************
@@ -184,7 +184,7 @@ if (Jac_SD_FDdr != NULL)
for (int xpn = 0 ; xpn < ps.N_patches() ; ++xpn)
{
- patch& xp = ps.ith_patch(xpn);
+ const patch& xp = ps.ith_patch(xpn);
for (int x_irho = xp.min_irho() ; x_irho <= xp.max_irho() ; ++x_irho)
{
@@ -196,7 +196,7 @@ if (Jac_SD_FDdr != NULL)
for (int ypn = 0 ; ypn < ps.N_patches() ; ++ypn)
{
- patch& yp = ps.ith_patch(ypn);
+ const patch& yp = ps.ith_patch(ypn);
for (int y_irho = yp.min_irho() ;
y_irho <= yp.max_irho() ;