diff options
Diffstat (limited to '3rdparty/asio/src/tests/unit/signal_set.cpp')
-rw-r--r-- | 3rdparty/asio/src/tests/unit/signal_set.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/3rdparty/asio/src/tests/unit/signal_set.cpp b/3rdparty/asio/src/tests/unit/signal_set.cpp index cd8bd004154..962be8ba92e 100644 --- a/3rdparty/asio/src/tests/unit/signal_set.cpp +++ b/3rdparty/asio/src/tests/unit/signal_set.cpp @@ -2,7 +2,7 @@ // signal_set.cpp // ~~~~~~~~~~~~~~ // -// 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) @@ -66,6 +66,9 @@ void test() set1.add(1); set1.add(1, ec); + set1.add(1, signal_set::flags::dont_care); + set1.add(1, signal_set::flags::dont_care, ec); + set1.remove(1); set1.remove(1, ec); @@ -91,5 +94,5 @@ void test() ASIO_TEST_SUITE ( "signal_set", - ASIO_TEST_CASE(signal_set_compile::test) + ASIO_COMPILE_TEST_CASE(signal_set_compile::test) ) |