iterator: add deduction guide for 'indices'

This commit is contained in:
Danny Robson 2018-07-04 14:01:00 +10:00
parent 7ff2f38fd6
commit 3d59645637

View File

@ -301,6 +301,9 @@ namespace util {
const ContainerT &m_container;
};
template <typename ContainerT>
indices (ContainerT const&) -> indices<ContainerT>;
//-------------------------------------------------------------------------
template <typename T>