Replace Remaining Types

Somehow a few size_t slipped through https://github.com/official-stockfish/Stockfish/pull/6874

closes https://github.com/official-stockfish/Stockfish/pull/6897

No functional change
This commit is contained in:
Disservin
2026-06-14 09:58:13 +02:00
parent 718a001e6a
commit 6e4e03fd28
10 changed files with 51 additions and 49 deletions
+1 -1
View File
@@ -349,7 +349,7 @@ template<typename T>
class RelaxedAtomic {
static constexpr bool UseAtomic =
#ifdef USE_SLOPPY_ATOMICS
!std::atomic<T>::is_always_lock_free || sizeof(T) > sizeof(size_t);
!std::atomic<T>::is_always_lock_free || sizeof(T) > sizeof(usize);
#else
true;
#endif