iterator: remove unnecessary make_indices
We have template deduction guides now. This is unneeded.
This commit is contained in:
parent
b3c918888a
commit
a7ce62cd66
10
iterator.hpp
10
iterator.hpp
@ -301,19 +301,11 @@ namespace util {
|
||||
const ContainerT &m_container;
|
||||
};
|
||||
|
||||
|
||||
template <typename ContainerT>
|
||||
indices (ContainerT const&) -> indices<ContainerT>;
|
||||
|
||||
|
||||
//-------------------------------------------------------------------------
|
||||
template <typename T>
|
||||
indices<T>
|
||||
make_indices (const T &_t)
|
||||
{
|
||||
return indices<T> (_t);
|
||||
}
|
||||
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
namespace detail::zip {
|
||||
template <
|
||||
|
Loading…
Reference in New Issue
Block a user