From b32c25b283ea9cc5ae21c3d8870f2f856d5f2f0e Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sun, 14 Jul 2024 17:25:56 +0200 Subject: w --- compat/borrowed-ptr.hpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/compat/borrowed-ptr.hpp b/compat/borrowed-ptr.hpp index 2f7f00d2..34fa6cfe 100644 --- a/compat/borrowed-ptr.hpp +++ b/compat/borrowed-ptr.hpp @@ -53,15 +53,15 @@ public: bptr(std::nullptr_t) noexcept; // NOLINT(*-explicit-conversions) bptr& operator=(std::nullptr_t) noexcept; - CORRADE_ALWAYS_INLINE bptr(const bptr&) noexcept; - CORRADE_ALWAYS_INLINE bptr& operator=(const bptr&) noexcept; - template Y> CORRADE_ALWAYS_INLINE bptr(const bptr&) noexcept; - template Y> CORRADE_ALWAYS_INLINE bptr& operator=(const bptr&) noexcept; - - CORRADE_ALWAYS_INLINE bptr(bptr&&) noexcept; - CORRADE_ALWAYS_INLINE bptr& operator=(bptr&&) noexcept; - template Y> CORRADE_ALWAYS_INLINE bptr(bptr&&) noexcept; - template Y> CORRADE_ALWAYS_INLINE bptr& operator=(bptr&&) noexcept; + bptr(const bptr&) noexcept; + bptr& operator=(const bptr&) noexcept; + template Y> bptr(const bptr&) noexcept; + template Y> bptr& operator=(const bptr&) noexcept; + + bptr(bptr&&) noexcept; + bptr& operator=(bptr&&) noexcept; + template Y> bptr(bptr&&) noexcept; + template Y> bptr& operator=(bptr&&) noexcept; void reset() noexcept; void destroy() noexcept; -- cgit v1.2.3