diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-28 18:29:02 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-28 20:13:32 +0100 |
commit | 78a3eec9be053a1f82cf2e6235bbaa4deb4a1335 (patch) | |
tree | 4539ba47695bc7b5fd974e2508067cb2fd168636 /serialize/packbits-read.hpp | |
parent | 75508e3c03f659080df7db2211fb5a80cc1afeee (diff) |
switch to using unqualified calls to {move,forward,swap}
Diffstat (limited to 'serialize/packbits-read.hpp')
-rw-r--r-- | serialize/packbits-read.hpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/serialize/packbits-read.hpp b/serialize/packbits-read.hpp index d2622d49..4ad3aa74 100644 --- a/serialize/packbits-read.hpp +++ b/serialize/packbits-read.hpp @@ -4,7 +4,6 @@ #include <type_traits> #include <concepts> #include <tuple> -#include <Corrade/Utility/Move.h> namespace floormat::Pack_impl { @@ -103,7 +102,7 @@ constexpr CORRADE_ALWAYS_INLINE void read_(Tuple&& tuple, input<T, Left> st, std using next_type = typename input<T, Left>::template next<Size>; std::get<I>(tuple).value = st.template get<Size>(); T next_value = st.template advance<Size>(); - read_(Utility::forward<Tuple>(tuple), next_type{ next_value }, std::index_sequence<Is...>{}); + read_(floormat::forward<Tuple>(tuple), next_type{ next_value }, std::index_sequence<Is...>{}); } template<std::unsigned_integral T, typename Tuple, size_t Left> @@ -125,7 +124,7 @@ requires requires (const Tuple& tuple) { { constexpr size_t nbits = sizeof(T)*8, tuple_size = std::tuple_size_v<std::decay_t<Tuple>>; - Pack_impl::read_(Utility::forward<Tuple>(tuple), + Pack_impl::read_(floormat::forward<Tuple>(tuple), Pack_impl::input<T, nbits>{value}, std::make_index_sequence<tuple_size>{}); } |