File tree Expand file tree Collapse file tree 2 files changed +3
-31
lines changed
include/boost/json/detail Expand file tree Collapse file tree 2 files changed +3
-31
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1313#define BOOST_JSON_DETAIL_VALUE_TO_HPP
1414
1515#include < boost/json/value.hpp>
16- #include < boost/json/detail/index_sequence.hpp>
1716#include < boost/json/detail/value_traits.hpp>
17+ #include < boost/mp11/integer_sequence.hpp>
1818
1919#include < type_traits>
2020
@@ -219,7 +219,7 @@ value_to_generic(
219219
220220template <class T , std::size_t ... Is>
221221T
222- make_tuple_like (const array& arr, index_sequence<Is...>)
222+ make_tuple_like (const array& arr, boost::mp11:: index_sequence<Is...>)
223223{
224224 return T (value_to<typename std::tuple_element<Is, T>::type>(arr[Is])...);
225225}
@@ -241,7 +241,7 @@ value_to_generic(
241241 BOOST_JSON_SOURCE_POS);
242242 }
243243
244- return make_tuple_like<T>(arr, make_index_sequence<N>());
244+ return make_tuple_like<T>(arr, boost::mp11:: make_index_sequence<N>());
245245}
246246
247247// Matches containers
You can’t perform that action at this time.
0 commit comments