You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Another thing: We might also want resize<dim_t>(SizeType> to ensure compile-time definition of the dimension. Nowadays, constexpr achieves the same when used correctly, but it doesn't complain if we don't.
The method resize (TeamSpec) is ambiguous in case of two dimensions:
template<typename... Args>
void resize(SizeType arg, Args... args)
vs.
void resize(dim_t dim, SizeType extent)
e.g. the call teamspec.resize(2,1) doesn't compile.
Currently, I don't have a solution, in case we want to keep both functionalities.
The text was updated successfully, but these errors were encountered: