aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetLib/src/gf.cc
diff options
context:
space:
mode:
authorschnetter <>2001-06-12 12:56:00 +0000
committerschnetter <>2001-06-12 12:56:00 +0000
commit8867059a4180017e191773894b66fc36521168b9 (patch)
tree27cc2b6bbfdf277b797d883a5770679de6dcff05 /Carpet/CarpetLib/src/gf.cc
parent2de5b11b0a7bfb67d2ac1be8b74edcd024698617 (diff)
Introduced abstraction classes that have no <dim> parameter. This
Introduced abstraction classes that have no <dim> parameter. This will make it easier to adapte the driver to support multiple dimensions at once. darcs-hash:20010612125655-07bb3-1cba35eb867eca1234b3a40bd7a5641b64776c50.gz
Diffstat (limited to 'Carpet/CarpetLib/src/gf.cc')
-rw-r--r--Carpet/CarpetLib/src/gf.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/Carpet/CarpetLib/src/gf.cc b/Carpet/CarpetLib/src/gf.cc
index c3f923cc6..d7b183cd8 100644
--- a/Carpet/CarpetLib/src/gf.cc
+++ b/Carpet/CarpetLib/src/gf.cc
@@ -6,7 +6,7 @@
copyright : (C) 2000 by Erik Schnetter
email : schnetter@astro.psu.edu
- $Header: /home/eschnett/C/carpet/Carpet/Carpet/CarpetLib/src/gf.cc,v 1.4 2001/03/27 22:26:31 eschnett Exp $
+ $Header: /home/eschnett/C/carpet/Carpet/Carpet/CarpetLib/src/gf.cc,v 1.5 2001/06/12 14:56:59 schnetter Exp $
***************************************************************************/
@@ -33,7 +33,7 @@ using namespace std;
// Constructors
template<class T,int D>
-gf<T,D>::gf (const string name, th<D>& t, dh<D>& d,
+gf<T,D>::gf (const string name, th& t, dh<D>& d,
const int tmin, const int tmax)
: generic_gf<D>(name, t, d, tmin, tmax)
{