diff options
Diffstat (limited to 'boost/beast/websocket/detail/type_traits.hpp')
-rw-r--r-- | boost/beast/websocket/detail/type_traits.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/boost/beast/websocket/detail/type_traits.hpp b/boost/beast/websocket/detail/type_traits.hpp index 6c2806146c..6913174fd0 100644 --- a/boost/beast/websocket/detail/type_traits.hpp +++ b/boost/beast/websocket/detail/type_traits.hpp @@ -19,12 +19,12 @@ namespace websocket { namespace detail { template<class F> -using is_RequestDecorator = +using is_request_decorator = typename beast::detail::is_invocable<F, void(request_type&)>::type; template<class F> -using is_ResponseDecorator = +using is_response_decorator = typename beast::detail::is_invocable<F, void(response_type&)>::type; |