| 176 | ALWAYS_INLINE void Store(bool val) { boolean_.Store(val); } |
| 177 | |
| 178 | ALWAYS_INLINE bool CompareAndSwap(bool old_val, bool new_val) { |
| 179 | return boolean_.CompareAndSwap(old_val, new_val); |
| 180 | } |
| 181 | |
| 182 | private: |
| 183 | internal::AtomicInt<int32_t> boolean_; |
nothing calls this directly
no test coverage detected