From c0ed735e201bb3fed0b22985e3f6bf4946566067 Mon Sep 17 00:00:00 2001 From: Mingxin Wang Date: Thu, 13 Feb 2025 20:41:47 +0100 Subject: [PATCH] Code cleanup --- proxy.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/proxy.h b/proxy.h index 4568b521..7ad0d9e6 100644 --- a/proxy.h +++ b/proxy.h @@ -495,7 +495,7 @@ using lifetime_meta_t = typename lifetime_meta_traits::type; template class ___PRO_ENFORCE_EBO composite_accessor_impl : public As... { template friend class pro::proxy; - template friend struct pro::proxy_indirect_accessor; + template friend struct pro::proxy_indirect_accessor; composite_accessor_impl() noexcept = default; composite_accessor_impl(const composite_accessor_impl&) noexcept = default; @@ -1711,7 +1711,7 @@ struct proxy_typeid_reflector { return *refl.info; } ___PRO_DEBUG( - accessor() noexcept { std::ignore = &accessor::_symbol_guard; } + accessor() noexcept { std::ignore = &_symbol_guard; } private: static inline const std::type_info& _symbol_guard( @@ -1896,7 +1896,7 @@ struct operator_dispatch; SELF, std::forward(arg)); \ } \ ___PRO_DEBUG( \ - accessor() noexcept { std::ignore = &accessor::_symbol_guard; } \ + accessor() noexcept { std::ignore = &_symbol_guard; } \ \ private: \ static inline R _symbol_guard(Arg arg, SELF_ARG) NE { \ @@ -1945,7 +1945,7 @@ ___PRO_DEBUG( \ return arg; \ } \ ___PRO_DEBUG( \ - accessor() noexcept { std::ignore = &accessor::_symbol_guard; } \ + accessor() noexcept { std::ignore = &_symbol_guard; } \ \ private: \ static inline Arg& _symbol_guard(Arg& arg, SELF_ARG) NE \ @@ -2114,7 +2114,7 @@ struct weak_dispatch : D { __SELF, ::std::forward<__Args>(__args)...); \ } \ ___PRO_DEBUG( \ - accessor() noexcept { ::std::ignore = &accessor::_symbol_guard; } \ + accessor() noexcept { ::std::ignore = &_symbol_guard; } \ \ private: \ static inline __R _symbol_guard(__SELF_ARG, __Args... __args) __NE { \