Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reshape method #1760

Open
wants to merge 15 commits into
base: develop
Choose a base branch
from
5 changes: 3 additions & 2 deletions include/RAJA/util/View.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

/*!
******************************************************************************
*
Expand Down Expand Up @@ -312,9 +313,9 @@ constexpr auto get_last_index(T last)
}

template <typename T0, typename T1, typename... Args>
constexpr auto get_last_index(T0, T1, Args... args)
constexpr auto get_last_index(T0, T1 t1, Args... args)
{
return get_last_index(args...);
return get_last_index(t1, args...);
MrBurmark marked this conversation as resolved.
Show resolved Hide resolved
}
} // namespace detail

Expand Down
Loading