aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetLib/src/gdata.cc
diff options
context:
space:
mode:
authorIan Hinder <ian.hinder@aei.mpg.de>2012-02-01 23:55:21 -0600
committerBarry Wardell <barry.wardell@gmail.com>2012-09-11 18:17:58 +0100
commitead4d3203389858d2982ceaba4f235a7b51c7e30 (patch)
treef7197529f7d536cc7b1dbc8814064dd7e3a1fdd6 /Carpet/CarpetLib/src/gdata.cc
parent5a9e7f1d1d30045c228ea4040e76def6d14749c3 (diff)
Cast several things to CCTK_REAL to support
single-precision --- Carpet/Carpet/src/Timing.cc | 2 +- Carpet/CarpetLib/src/gdata.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
Diffstat (limited to 'Carpet/CarpetLib/src/gdata.cc')
-rw-r--r--Carpet/CarpetLib/src/gdata.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/Carpet/CarpetLib/src/gdata.cc b/Carpet/CarpetLib/src/gdata.cc
index 9c79ed7a4..383b334b5 100644
--- a/Carpet/CarpetLib/src/gdata.cc
+++ b/Carpet/CarpetLib/src/gdata.cc
@@ -40,7 +40,7 @@ ostream& operator<< (ostream& os, slab<T,D> const & slabinfo)
}
template ostream& operator<< (ostream& os, slab<int,dim> const & slabinfo);
-template ostream& operator<< (ostream& os, slab<double,dim> const & slabinfo);
+template ostream& operator<< (ostream& os, slab<CCTK_REAL,dim> const & slabinfo);
template<typename T,int D>
MPI_Datatype mpi_datatype (slab<T,D> const&)