Atomic load with "acquire" memory-ordering semantic.
| 171 | |
| 172 | /// Atomic load with "acquire" memory-ordering semantic. |
| 173 | ALWAYS_INLINE bool Load() const { return boolean_.Load(); } |
| 174 | |
| 175 | /// Atomic store with "release" memory-ordering semantic. |
| 176 | ALWAYS_INLINE void Store(bool val) { boolean_.Store(val); } |