2
0
mirror of https://github.com/boostorg/fiber.git synced 2026-02-20 02:32:19 +00:00

code clean-up

This commit is contained in:
Oliver Kowalke
2013-06-17 17:43:21 +02:00
parent 3dda52415f
commit f3193cb2e3
2 changed files with 2 additions and 3 deletions

View File

@@ -108,7 +108,7 @@ round_robin::run()
rqueue_.pop_front();
if ( f->is_ready() ) break;
if ( f->is_waiting() ) wqueue_.push_back( f);
else if ( f->is_waiting() ) wqueue_.push_back( f);
else BOOST_ASSERT_MSG( false, "fiber with invalid state in ready-queue");
}
while ( true);