Remove erroneous assert in fc::thread_d::check_for_timeouts()

I believe this assert was being triggered when the only task on
a thread did a fc::usleep (it might only have been when the
sleep was of very short duration).
This commit is contained in:
Eric Frias 2014-03-10 17:37:38 -04:00
parent e3b43be2e7
commit e04d544016

View file

@ -430,9 +430,9 @@ namespace fc {
else
{
//ilog( "..." );
FC_ASSERT( c != current )
//ilog( "ready_push_front" );
ready_push_front( c );
if (c != current)
ready_push_front( c );
}
}
return time_point::min();