aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetLib/src/vect.cc
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@cct.lsu.edu>2010-04-26 18:01:17 -0500
committerErik Schnetter <schnetter@cct.lsu.edu>2010-04-26 18:01:17 -0500
commit69c77385319b0edf02aab5914b86c46bf766c300 (patch)
tree19246cdcde23181dc9607af59f831db6c4d2c6cc /Carpet/CarpetLib/src/vect.cc
parent03e8a3507c4bbee93b3548a92f93e4347ef59511 (diff)
CarpetLib: Replace "class" by "typename" in template arguments in vect.cc
Diffstat (limited to 'Carpet/CarpetLib/src/vect.cc')
-rw-r--r--Carpet/CarpetLib/src/vect.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/Carpet/CarpetLib/src/vect.cc b/Carpet/CarpetLib/src/vect.cc
index 02b857557..4a573d6af 100644
--- a/Carpet/CarpetLib/src/vect.cc
+++ b/Carpet/CarpetLib/src/vect.cc
@@ -12,7 +12,7 @@ using namespace std;
// Input
-template<class T,int D>
+template<typename T,int D>
void vect<T,D>::input (istream& is) {
skipws (is);
consume (is, '[');
@@ -31,7 +31,7 @@ void vect<T,D>::input (istream& is) {
// Output
-template<class T,int D>
+template<typename T,int D>
void vect<T,D>::output (ostream& os) const {
os << "[";
for (int d=0; d<D; ++d) {