Fixed assert
This commit is contained in:
parent
9077892d87
commit
2cc32d79ba
1 changed files with 1 additions and 1 deletions
|
|
@ -398,7 +398,7 @@ namespace fc {
|
|||
print_stacktrace( stacktrace );
|
||||
elog( "Thread ${name} yielded in exception handler!\n${trace}",
|
||||
("name",thread::current().name())("trace",stacktrace.str()) );
|
||||
assert( std::current_exception() != std::exception_ptr() );
|
||||
assert( std::current_exception() == std::exception_ptr() );
|
||||
}
|
||||
|
||||
check_for_timeouts();
|
||||
|
|
|
|||
Loading…
Reference in a new issue