1111namespace mlib
1212{
1313 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...>)
1515 {
1616 if constexpr (get<index + to_add>(tup) == to_find)
1717 {
@@ -24,7 +24,7 @@ namespace mlib
2424 }
2525
2626 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>)
2828 {
2929 if constexpr (get<index + to_add>(tup) == to_find)
3030 {
@@ -37,7 +37,7 @@ namespace mlib
3737 }
3838
3939 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...>)
4141 {
4242 if constexpr (mlib::get<index>(tup) == to_find)
4343 {
0 commit comments