view: add deductions for u32 and u64

This commit is contained in:
Danny Robson 2018-07-18 15:20:30 +10:00
parent f9c63ece5d
commit 80bc988466

View File

@ -439,7 +439,10 @@ namespace util {
// base + count constructor
template <typename BeginT>
view (BeginT const &, size_t count) -> view<BeginT,BeginT>;
view (BeginT, std::uint64_t count) -> view<BeginT,BeginT>;
template <typename BeginT>
view (BeginT, std::uint32_t count) -> view<BeginT,BeginT>;
///////////////////////////////////////////////////////////////////////////