Skip to content

Commit

Permalink
tests: appleclang compile fix
Browse files Browse the repository at this point in the history
  • Loading branch information
timblechmann committed Dec 15, 2024
1 parent 922842f commit ba92d67
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions test/queue_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@
#include <memory>


using namespace boost;
using namespace boost::lockfree;
using namespace std;

BOOST_AUTO_TEST_CASE( simple_queue_test )
{
Expand Down Expand Up @@ -152,7 +150,7 @@ BOOST_AUTO_TEST_CASE( queue_convert_pop_test )
}

{
unique_ptr< int > i3;
std::unique_ptr< int > i3;
BOOST_TEST_REQUIRE( f.pop( i3 ) );

BOOST_TEST_REQUIRE( *i3 == 3 );
Expand Down

0 comments on commit ba92d67

Please sign in to comment.