LV2: Re-add dropped optimization by previous commit

Currently only for lock-free syscalls.
This commit is contained in:
Eladash 2022-08-04 15:29:24 +03:00 committed by Ivan
parent 34bae90820
commit 26e731b487
4 changed files with 33 additions and 7 deletions

View file

@ -371,12 +371,12 @@ public:
bool bit_test_reset(uint bit) = delete;
bool bit_test_invert(uint bit) = delete;
bool all_of(bs_t arg)
bool all_of(bs_t arg) const
{
return base::load().all_of(arg);
}
bool none_of(bs_t arg)
bool none_of(bs_t arg) const
{
return base::load().none_of(arg);
}