diff --git a/c++/nda/map.hpp b/c++/nda/map.hpp index 0f512cf1..c29d8db9 100644 --- a/c++/nda/map.hpp +++ b/c++/nda/map.hpp @@ -195,8 +195,8 @@ namespace nda { * @return Result of the functor applied to the scalar arguments. */ template - auto operator()(T0 a0, Ts... as) const { - return f(a0, as...); + auto operator()(T0 t0, Ts... ts) const { + return f(t0, ts...); } };