Skip to content

Commit

Permalink
removed move_only template inst from channel.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
klemens-morgenstern committed May 30, 2024
1 parent d5abc2e commit 2f07dfb
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions test/channel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<move_only>;

CO_TEST_CASE(unique)
{
std::unique_ptr<int> p{new int(42)};
Expand Down

0 comments on commit 2f07dfb

Please sign in to comment.