[pre-commit.ci lite] apply automatic fixes

This commit is contained in:
pre-commit-ci-lite[bot]
2026-03-17 12:02:06 +00:00
committed by GitHub
parent 1c685a8a77
commit d0c39d95ad
+3 -3
View File
@@ -551,9 +551,9 @@ class Scheduler {
// Single-threaded: no concurrent writers, direct check is safe
return this->to_add_.empty();
#else
// Multi-threaded without atomics: must take lock; always indicate "not empty"
// so the caller does not attempt a lock-free path.
return false;
// Multi-threaded without atomics: must take lock; always indicate "not empty"
// so the caller does not attempt a lock-free path.
return false;
#endif
}