Skip to content

Commit c7b7362

Browse files
committed
bugfix
the negation operator got lost in an earlier commit
1 parent f5079c4 commit c7b7362

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/reactor-cpp/time_barrier.hh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public:
4141
if (try_acquire_tag(tag)) {
4242
return true;
4343
}
44-
return scheduler->wait_until(lock, tag.time_point(), abort_waiting);
44+
return !scheduler->wait_until(lock, tag.time_point(), abort_waiting);
4545
}
4646
};
4747

0 commit comments

Comments
 (0)