mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-26 14:05:51 +00:00
Fix invoked_type type reference
This commit is contained in:
@@ -163,8 +163,9 @@ struct AbstractHandler <R (void), A>
|
|||||||
#else
|
#else
|
||||||
{ return false; }
|
{ return false; }
|
||||||
#endif
|
#endif
|
||||||
void invoke (invoked_type& invoked)
|
void invoke (typename detail::AbstractHandlerCallBase::invoked_type& invoked)
|
||||||
{ boost_asio_handler_invoke_helpers::invoke <invoked_type, H> (invoked, m_h); }
|
{ boost_asio_handler_invoke_helpers::invoke <
|
||||||
|
typename detail::AbstractHandlerCallBase::invoked_type, H> (invoked, m_h); }
|
||||||
private:
|
private:
|
||||||
H m_h;
|
H m_h;
|
||||||
Allocator m_alloc;
|
Allocator m_alloc;
|
||||||
@@ -260,8 +261,9 @@ struct AbstractHandler <R (P1), A>
|
|||||||
#else
|
#else
|
||||||
{ return false; }
|
{ return false; }
|
||||||
#endif
|
#endif
|
||||||
void invoke (invoked_type& invoked)
|
void invoke (typename detail::AbstractHandlerCallBase::invoked_type& invoked)
|
||||||
{ boost_asio_handler_invoke_helpers::invoke <invoked_type, H> (invoked, m_h); }
|
{ boost_asio_handler_invoke_helpers::invoke <
|
||||||
|
typename detail::AbstractHandlerCallBase::invoked_type, H> (invoked, m_h); }
|
||||||
private:
|
private:
|
||||||
H m_h;
|
H m_h;
|
||||||
Allocator m_alloc;
|
Allocator m_alloc;
|
||||||
@@ -356,8 +358,9 @@ struct AbstractHandler <R (P1, P2), A>
|
|||||||
#else
|
#else
|
||||||
{ return false; }
|
{ return false; }
|
||||||
#endif
|
#endif
|
||||||
void invoke (invoked_type& invoked)
|
void invoke (typename detail::AbstractHandlerCallBase::invoked_type& invoked)
|
||||||
{ boost_asio_handler_invoke_helpers::invoke <invoked_type, H> (invoked, m_h); }
|
{ boost_asio_handler_invoke_helpers::invoke <
|
||||||
|
typename detail::AbstractHandlerCallBase::invoked_type, H> (invoked, m_h); }
|
||||||
private:
|
private:
|
||||||
H m_h;
|
H m_h;
|
||||||
Allocator m_alloc;
|
Allocator m_alloc;
|
||||||
@@ -450,8 +453,9 @@ struct AbstractHandler <R (P1, P2, P3), A>
|
|||||||
#else
|
#else
|
||||||
{ return false; }
|
{ return false; }
|
||||||
#endif
|
#endif
|
||||||
void invoke (invoked_type& invoked)
|
void invoke (typename detail::AbstractHandlerCallBase::invoked_type& invoked)
|
||||||
{ boost_asio_handler_invoke_helpers::invoke <invoked_type, H> (invoked, m_h); }
|
{ boost_asio_handler_invoke_helpers::invoke <
|
||||||
|
typename detail::AbstractHandlerCallBase::invoked_type, H> (invoked, m_h); }
|
||||||
private:
|
private:
|
||||||
H m_h;
|
H m_h;
|
||||||
Allocator m_alloc;
|
Allocator m_alloc;
|
||||||
@@ -544,8 +548,9 @@ struct AbstractHandler <R (P1, P2, P3, P4), A>
|
|||||||
#else
|
#else
|
||||||
{ return false; }
|
{ return false; }
|
||||||
#endif
|
#endif
|
||||||
void invoke (invoked_type& invoked)
|
void invoke (typename detail::AbstractHandlerCallBase::invoked_type& invoked)
|
||||||
{ boost_asio_handler_invoke_helpers::invoke <invoked_type, H> (invoked, m_h); }
|
{ boost_asio_handler_invoke_helpers::invoke <
|
||||||
|
typename detail::AbstractHandlerCallBase::invoked_type, H> (invoked, m_h); }
|
||||||
private:
|
private:
|
||||||
H m_h;
|
H m_h;
|
||||||
Allocator m_alloc;
|
Allocator m_alloc;
|
||||||
@@ -638,8 +643,9 @@ struct AbstractHandler <R (P1, P2, P3, P4, P5), A>
|
|||||||
#else
|
#else
|
||||||
{ return false; }
|
{ return false; }
|
||||||
#endif
|
#endif
|
||||||
void invoke (invoked_type& invoked)
|
void invoke (typename detail::AbstractHandlerCallBase::invoked_type& invoked)
|
||||||
{ boost_asio_handler_invoke_helpers::invoke <invoked_type, H> (invoked, m_h); }
|
{ boost_asio_handler_invoke_helpers::invoke <
|
||||||
|
typename detail::AbstractHandlerCallBase::invoked_type, H> (invoked, m_h); }
|
||||||
private:
|
private:
|
||||||
H m_h;
|
H m_h;
|
||||||
Allocator m_alloc;
|
Allocator m_alloc;
|
||||||
|
|||||||
Reference in New Issue
Block a user