mipsel: base: Disable lockfree assert

147.0.7727.49
klzgrad 2025-04-04 10:05:00 +08:00
parent 79965d8ccc
commit 10f0dfa306
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ class LockFreeBloomFilter {
// Accessed with std::memory_order_relaxed since the class doesn't synchronize
// access to pointed-to memory. Instead pointers passed to Add() are treated
// as opaque keys.
static_assert(std::atomic<LockFreeBloomFilterBits>::is_always_lock_free);
// static_assert(std::atomic<LockFreeBloomFilterBits>::is_always_lock_free);
std::atomic<LockFreeBloomFilterBits> bits_ = 0;
};