From 2f07dfbb8e5aa93a0f7a0b7163e805748b913a57 Mon Sep 17 00:00:00 2001 From: Klemens Morgenstern Date: Thu, 30 May 2024 08:01:34 +0800 Subject: [PATCH] removed move_only template inst from channel.cpp --- test/channel.cpp | 9 --------- 1 file changed, 9 deletions(-) diff --git a/test/channel.cpp b/test/channel.cpp index 54fe6b21..4eec322e 100644 --- a/test/channel.cpp +++ b/test/channel.cpp @@ -296,15 +296,6 @@ BOOST_AUTO_TEST_SUITE_END(); namespace boost::cobalt { -struct move_only -{ - move_only() {} - move_only(move_only &&) {} - move_only& operator=(move_only &&) {return * this;} -}; - -template struct channel; - CO_TEST_CASE(unique) { std::unique_ptr p{new int(42)};