diff options
Diffstat (limited to 'src/shader_recompiler/frontend/ir/condition.h')
| -rw-r--r-- | src/shader_recompiler/frontend/ir/condition.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/frontend/ir/condition.h b/src/shader_recompiler/frontend/ir/condition.h index 52737025c..16b4ae888 100644 --- a/src/shader_recompiler/frontend/ir/condition.h +++ b/src/shader_recompiler/frontend/ir/condition.h | |||
| @@ -26,7 +26,7 @@ public: | |||
| 26 | explicit Condition(Pred pred_, bool pred_negated_ = false) noexcept | 26 | explicit Condition(Pred pred_, bool pred_negated_ = false) noexcept |
| 27 | : Condition(FlowTest::T, pred_, pred_negated_) {} | 27 | : Condition(FlowTest::T, pred_, pred_negated_) {} |
| 28 | 28 | ||
| 29 | Condition(bool value) : Condition(Pred::PT, !value) {} | 29 | explicit Condition(bool value) : Condition(Pred::PT, !value) {} |
| 30 | 30 | ||
| 31 | auto operator<=>(const Condition&) const noexcept = default; | 31 | auto operator<=>(const Condition&) const noexcept = default; |
| 32 | 32 | ||