aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@cct.lsu.edu>2010-08-25 10:16:41 -0400
committerBarry Wardell <barry.wardell@gmail.com>2011-12-14 18:21:18 +0000
commitb21cc59f5254452cf8e7181792c256a835220981 (patch)
tree9a43a28516cb26729d4700cf2e0252cad9bc4027
parenta989c94165585c16724f02dc638c887e75a88cdc (diff)
CarpetLib: Instantiate vect template for more types
-rw-r--r--Carpet/CarpetLib/src/vect.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/Carpet/CarpetLib/src/vect.cc b/Carpet/CarpetLib/src/vect.cc
index b02a46979..58def3ca1 100644
--- a/Carpet/CarpetLib/src/vect.cc
+++ b/Carpet/CarpetLib/src/vect.cc
@@ -71,6 +71,7 @@ template class vect<int,2>;
template class vect<int,3>;
template class vect<int,4>;
+template void vect<unsigned long long,dim>::input (istream& is);
template void vect<CCTK_REAL,dim>::input (istream& is);
template void vect<vect<bool,2>,dim>::input (istream& is);
template void vect<vect<bool,dim>,2>::input (istream& is);
@@ -78,6 +79,7 @@ template void vect<vect<int,dim>,2>::input (istream& is);
template void vect<bool,2>::output (ostream& os) const;
template void vect<bool,dim>::output (ostream& os) const;
+template void vect<unsigned long long,dim>::output (ostream& os) const;
template void vect<CCTK_REAL,2>::output (ostream& os) const;
template void vect<CCTK_REAL,dim>::output (ostream& os) const;
template void vect<vect<bool,2>,dim>::output (ostream& os) const;