Skip to content
This repository was archived by the owner on Jan 29, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions proxy.h
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ using lifetime_meta_t = typename lifetime_meta_traits<MP, C>::type;
template <class... As>
class ___PRO_ENFORCE_EBO composite_accessor_impl : public As... {
template <class> friend class pro::proxy;
template <class F> friend struct pro::proxy_indirect_accessor;
template <class> friend struct pro::proxy_indirect_accessor;

composite_accessor_impl() noexcept = default;
composite_accessor_impl(const composite_accessor_impl&) noexcept = default;
Expand Down Expand Up @@ -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(
Expand Down Expand Up @@ -1896,7 +1896,7 @@ struct operator_dispatch;
SELF, std::forward<Arg>(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 { \
Expand Down Expand Up @@ -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 \
Expand Down Expand Up @@ -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 { \
Expand Down