aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetLib/src
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@cct.lsu.edu>2007-02-23 20:06:00 +0000
committerErik Schnetter <schnetter@cct.lsu.edu>2007-02-23 20:06:00 +0000
commit2eba11a10c668f08cc9004bcc28939706c356861 (patch)
tree449626d96ca8ba64528ce34cffab7b5fbb3195d4 /Carpet/CarpetLib/src
parent7623c82ee7196cfe245e7fc174e141dda283a298 (diff)
CarpetLib: Make the template functions min3 and max3 not static
Make the template functions min3 and max3 not static to keep the AIX C++ compiler happy. darcs-hash:20070223200627-dae7b-d31ff7e7e0741ce3c592b60350deccb3b4f7f9ab.gz
Diffstat (limited to 'Carpet/CarpetLib/src')
-rw-r--r--Carpet/CarpetLib/src/interpolate_eno_3d_3tl.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/Carpet/CarpetLib/src/interpolate_eno_3d_3tl.cc b/Carpet/CarpetLib/src/interpolate_eno_3d_3tl.cc
index 44344461a..0af632f88 100644
--- a/Carpet/CarpetLib/src/interpolate_eno_3d_3tl.cc
+++ b/Carpet/CarpetLib/src/interpolate_eno_3d_3tl.cc
@@ -27,7 +27,7 @@ namespace CarpetLib {
template <typename T>
- static inline
+ inline
T
min3 (T const & x, T const & y, T const & z)
{
@@ -35,7 +35,7 @@ namespace CarpetLib {
}
template <typename T>
- static inline
+ inline
T
max3 (T const & x, T const & y, T const & z)
{