| 58 | Oz |
| 59 | }; |
| 60 | void setOptimizationLevel(OptimizationLevel Level) noexcept { |
| 61 | OptLevel.store(Level, std::memory_order_relaxed); |
| 62 | } |
| 63 | OptimizationLevel getOptimizationLevel() const noexcept { |
| 64 | return OptLevel.load(std::memory_order_relaxed); |
| 65 | } |