diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-05-11 16:22:15 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-05-11 16:22:15 +0200 |
commit | d42f407998437db26a8598563af51d99efa3797c (patch) | |
tree | 912f9e29f5097f04e6b976cbb5e2f982b3c55fd2 | |
parent | b3960e20d34969a6d4f56ab187689205df125204 (diff) |
w
-rw-r--r-- | compat/intrusive-ptr.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compat/intrusive-ptr.hpp b/compat/intrusive-ptr.hpp index accfd02f..8e9b3d6c 100644 --- a/compat/intrusive-ptr.hpp +++ b/compat/intrusive-ptr.hpp @@ -41,7 +41,7 @@ struct refcount_ops using Tref = T*; #endif - static constexpr inline auto incr(T* ptr) noexcept -> size_type; // todo! move to .inl, add iptr_<...> that has non-constexpr members that call iptr<...> variants, and is meant to be instantiated through `template class` rather than including the .inl + static constexpr inline auto incr(T* ptr) noexcept -> size_type; // todo! remove constexpr from everywhere, then move everything to .inl static constexpr inline auto decr(Tref ptr) noexcept -> size_type; static constexpr inline auto count(T* ptr) noexcept -> size_type; static constexpr inline void init_to_1(T* ptr) noexcept; @@ -54,7 +54,7 @@ struct refcount_access refcount_access() = delete; static constexpr auto access(T* ptr) noexcept -> counter_type&; // todo! this should return the iptr's control block. it has to contain the original pointer (because the casted ptr (or its base class, when casted to iptr<base>) might not have a virtual dtor), shared count, and (shared+weak) count. - template<typename Y> static constexpr Y* checked_cast(const T* ptr) noexcept; // todo! rather than using a traits object, require inheriting from new `refcount_base<...>`, add pointer to refcount_base<...> to the control block and static_cast from it when a static cast is required + template<typename Y> static constexpr Y* checked_cast(const T* ptr) noexcept; }; template<typename Tag, typename T> |