11
11
namespace mlib
12
12
{
13
13
template <auto to_add, auto to_find, typename T, typename ... Ts, std::size_t index, std::size_t ... indexes>
14
- constexpr auto find_helper (tuple<T, Ts...> tup, std::index_sequence<index, indexes...>)
14
+ constexpr auto find_helper (mlib:: tuple<T, Ts...> tup, std::index_sequence<index, indexes...>)
15
15
{
16
16
if constexpr (get<index + to_add>(tup) == to_find)
17
17
{
@@ -24,7 +24,7 @@ namespace mlib
24
24
}
25
25
26
26
template <auto to_add, auto to_find, typename T, std::size_t index>
27
- constexpr auto find_helper (tuple<T> tup, std::index_sequence<index>)
27
+ constexpr auto find_helper (mlib:: tuple<T> tup, std::index_sequence<index>)
28
28
{
29
29
if constexpr (get<index + to_add>(tup) == to_find)
30
30
{
@@ -37,7 +37,7 @@ namespace mlib
37
37
}
38
38
39
39
template <auto to_find, typename T, typename ... Ts, std::size_t index, std::size_t ... indexes>
40
- constexpr auto find_helper (tuple<T, Ts...> tup, std::index_sequence<index, indexes...>)
40
+ constexpr auto find_helper (mlib:: tuple<T, Ts...> tup, std::index_sequence<index, indexes...>)
41
41
{
42
42
if constexpr (mlib::get<index>(tup) == to_find)
43
43
{
0 commit comments