aboutsummaryrefslogtreecommitdiff
path: root/Carpet
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@gmail.com>2013-05-20 09:07:11 -0500
committerErik Schnetter <schnetter@gmail.com>2013-05-20 09:07:11 -0500
commit0694b5d4b8caec8a2c5abb0680f2362581e88402 (patch)
tree092d47e3cfbc7bc756b2681cf35390b1303af49a /Carpet
parent1e86f8d4df69edd816f6de837343c852027e9d79 (diff)
CarpetLib: Rename vect::zip to vect::vzip
vect::map is already called vect::vmap.
Diffstat (limited to 'Carpet')
-rw-r--r--Carpet/CarpetLib/src/vect.hh8
1 files changed, 4 insertions, 4 deletions
diff --git a/Carpet/CarpetLib/src/vect.hh b/Carpet/CarpetLib/src/vect.hh
index 142cabc15..0bbaddf6b 100644
--- a/Carpet/CarpetLib/src/vect.hh
+++ b/Carpet/CarpetLib/src/vect.hh
@@ -579,11 +579,11 @@ inline vect<U,D> vmap (U (* const func)(T x), const vect<T,D>& a)
/** Return a new vector where the function func() has been used
element-wise to combine a and b. */
template<typename S, typename T, typename U, int D>
-inline vect<U,D> zip (U (* const func)(S x, T y),
- const vect<S,D>& a, const vect<T,D>& b);
+inline vect<U,D> vzip (U (* const func)(S x, T y),
+ const vect<S,D>& a, const vect<T,D>& b);
template<typename S, typename T, typename U, int D>
-inline vect<U,D> zip (U (* const func)(S x, T y),
- const vect<S,D>& a, const vect<T,D>& b)
+inline vect<U,D> vzip (U (* const func)(S x, T y),
+ const vect<S,D>& a, const vect<T,D>& b)
{
vect<U,D> r;
for (int d=0; d<D; ++d) r[d] = func(a[d], b[d]);