| 193 | } |
| 194 | |
| 195 | void setTimeMeasuring(bool IsTimeMeasure) noexcept { |
| 196 | TimeMeasuring.store(IsTimeMeasure, std::memory_order_relaxed); |
| 197 | } |
| 198 | |
| 199 | bool isTimeMeasuring() const noexcept { |
| 200 | return TimeMeasuring.load(std::memory_order_relaxed); |
no outgoing calls