diff options
Diffstat (limited to '3rdparty/asio/include/asio/detail/null_socket_service.hpp')
-rw-r--r-- | 3rdparty/asio/include/asio/detail/null_socket_service.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/3rdparty/asio/include/asio/detail/null_socket_service.hpp b/3rdparty/asio/include/asio/detail/null_socket_service.hpp index e6525465c4e..84e21295f63 100644 --- a/3rdparty/asio/include/asio/detail/null_socket_service.hpp +++ b/3rdparty/asio/include/asio/detail/null_socket_service.hpp @@ -2,7 +2,7 @@ // detail/null_socket_service.hpp // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // -// Copyright (c) 2003-2021 Christopher M. Kohlhoff (chris at kohlhoff dot com) +// Copyright (c) 2003-2024 Christopher M. Kohlhoff (chris at kohlhoff dot com) // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) @@ -33,7 +33,7 @@ namespace detail { template <typename Protocol> class null_socket_service : - public execution_context_service_base<null_socket_service<Protocol> > + public execution_context_service_base<null_socket_service<Protocol>> { public: // The protocol type. @@ -52,7 +52,7 @@ public: // Constructor. null_socket_service(execution_context& context) - : execution_context_service_base<null_socket_service<Protocol> >(context) + : execution_context_service_base<null_socket_service<Protocol>>(context) { } |