Skip to content

Commit

Permalink
lockfree: fix testsuite
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.boost.org/svn/boost/trunk@82182 b8fc166d-592f-0410-95f2-cb63ce0dd405
  • Loading branch information
timblechmann committed Dec 23, 2012
1 parent 00516c2 commit cb91f8e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion libs/lockfree/test/spsc_queue_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -397,8 +397,10 @@ struct spsc_queue_tester_buffering
for(;;) {
bool success = get_elements();
if (!running && !success)
return;
break;
}

while ( get_elements() );
}

void run(void)
Expand Down

0 comments on commit cb91f8e

Please sign in to comment.