summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/asio/src/tests/latency/udp_server.cpp
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/asio/src/tests/latency/udp_server.cpp')
-rw-r--r--3rdparty/asio/src/tests/latency/udp_server.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/3rdparty/asio/src/tests/latency/udp_server.cpp b/3rdparty/asio/src/tests/latency/udp_server.cpp
index a767f4c782a..13483fab76f 100644
--- a/3rdparty/asio/src/tests/latency/udp_server.cpp
+++ b/3rdparty/asio/src/tests/latency/udp_server.cpp
@@ -2,7 +2,7 @@
// udp_server.cpp
// ~~~~~~~~~~~~~~
//
-// Copyright (c) 2003-2016 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)
@@ -19,9 +19,9 @@
using asio::ip::udp;
-#include "yield.hpp"
+#include <asio/yield.hpp>
-class udp_server : coroutine
+class udp_server : asio::coroutine
{
public:
udp_server(asio::io_context& io_context,
@@ -90,7 +90,7 @@ private:
allocator allocator_;
};
-#include "unyield.hpp"
+#include <asio/unyield.hpp>
int main(int argc, char* argv[])
{