aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetLib/src/defs.cc
diff options
context:
space:
mode:
authorshawley <>2003-05-20 08:26:00 +0000
committershawley <>2003-05-20 08:26:00 +0000
commit86b32de8b85ff728e9b8fbf0cc0a9c8b6792dd2d (patch)
tree1df3eefff145f1f423f2c6feeb4d0c8414411f10 /Carpet/CarpetLib/src/defs.cc
parentfaebf8d71ab8737773c1d11c2b99600621653788 (diff)
added instantiation of vector<vect<vect<bool
darcs-hash:20030520082627-e415b-0d37ec4491c2586228a3fb7952e60dbee7f85939.gz
Diffstat (limited to 'Carpet/CarpetLib/src/defs.cc')
-rw-r--r--Carpet/CarpetLib/src/defs.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/Carpet/CarpetLib/src/defs.cc b/Carpet/CarpetLib/src/defs.cc
index 19c79ae7d..71e82f605 100644
--- a/Carpet/CarpetLib/src/defs.cc
+++ b/Carpet/CarpetLib/src/defs.cc
@@ -1,4 +1,4 @@
-// $Header: /home/eschnett/C/carpet/Carpet/Carpet/CarpetLib/src/defs.cc,v 1.15 2003/03/18 17:30:25 schnetter Exp $
+// $Header: /home/eschnett/C/carpet/Carpet/Carpet/CarpetLib/src/defs.cc,v 1.16 2003/05/20 10:26:27 shawley Exp $
#include <assert.h>
#include <ctype.h>
@@ -104,6 +104,7 @@ ostream& output (ostream& os, const vector<T>& v) {
template istream& input (istream& os, vector<bbox<int,3> >& v);
template istream& input (istream& os, vector<vector<bbox<int,3> > >& v);
+template istream& input (istream& os, vector<vect<vect<bool,2>,3> >& v);
template istream& input (istream& os, vector<vector<vect<vect<bool,2>,3> > >& v);
template ostream& output (ostream& os, const list<bbox<int,3> >& l);