view: add deductions for u32 and u64
This commit is contained in:
parent
f9c63ece5d
commit
80bc988466
5
view.hpp
5
view.hpp
@ -439,7 +439,10 @@ namespace util {
|
|||||||
|
|
||||||
// base + count constructor
|
// base + count constructor
|
||||||
template <typename BeginT>
|
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>;
|
||||||
|
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////
|
||||||
|
Loading…
Reference in New Issue
Block a user