Indexing cancellation: do not reset flag after throw in cancelcheck: other threads need it

This commit is contained in:
Jean-Francois Dockes 2016-04-11 14:51:05 +02:00
parent 8d71905c37
commit 276745c6dc

View File

@ -45,7 +45,6 @@ class CancelCheck {
}
void checkCancel() {
if (cancelRequested) {
cancelRequested = false;
throw CancelExcept();
}
}