aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetLib/src/gf.cc
diff options
context:
space:
mode:
authorschnetter <>2001-07-02 11:22:00 +0000
committerschnetter <>2001-07-02 11:22:00 +0000
commite1cce75b6dc96e7c88ccebff3ee4e03e8fdfc28e (patch)
treeec5927dd185a1ec8cc1746ab79c884bafda09225 /Carpet/CarpetLib/src/gf.cc
parent4ca7a55860bfbbb33036828d78a2bc046ff5f59c (diff)
Second stab at having arrays with a dimension different than grid
Second stab at having arrays with a dimension different than grid functions. Not yet tested. darcs-hash:20010702112209-07bb3-816053f629c333189a63014698d4b34c124168aa.gz
Diffstat (limited to 'Carpet/CarpetLib/src/gf.cc')
-rw-r--r--Carpet/CarpetLib/src/gf.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/Carpet/CarpetLib/src/gf.cc b/Carpet/CarpetLib/src/gf.cc
index d7b183cd8..42743ff29 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.5 2001/06/12 14:56:59 schnetter Exp $
+ $Header: /home/eschnett/C/carpet/Carpet/Carpet/CarpetLib/src/gf.cc,v 1.6 2001/07/02 13:22:14 schnetter Exp $
***************************************************************************/
@@ -80,6 +80,8 @@ ostream& gf<T,D>::output (ostream& os) const {
#if defined(TMPL_EXPLICIT)
#define INSTANTIATE(T) \
+template class gf<T,1>; \
+template class gf<T,2>; \
template class gf<T,3>;
#include "instantiate"