Skip to content

Commit dffc387

Browse files
add mlib prefix.
1 parent 22076b6 commit dffc387

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

find.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
namespace 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

Comments
 (0)