| 33 | class CompilerConfigure { |
| 34 | public: |
| 35 | CompilerConfigure() noexcept = default; |
| 36 | CompilerConfigure(const CompilerConfigure &RHS) noexcept |
| 37 | : OptLevel(RHS.OptLevel.load(std::memory_order_relaxed)), |
| 38 | OFormat(RHS.OFormat.load(std::memory_order_relaxed)), |