diff options
Diffstat (limited to '')
| -rw-r--r-- | src/shader_recompiler/frontend/ir/condition.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shader_recompiler/frontend/ir/condition.h b/src/shader_recompiler/frontend/ir/condition.h index 51c2f15cf..aa8597c60 100644 --- a/src/shader_recompiler/frontend/ir/condition.h +++ b/src/shader_recompiler/frontend/ir/condition.h | |||
| @@ -30,11 +30,11 @@ public: | |||
| 30 | 30 | ||
| 31 | auto operator<=>(const Condition&) const noexcept = default; | 31 | auto operator<=>(const Condition&) const noexcept = default; |
| 32 | 32 | ||
| 33 | [[nodiscard]] IR::FlowTest FlowTest() const noexcept { | 33 | [[nodiscard]] IR::FlowTest GetFlowTest() const noexcept { |
| 34 | return static_cast<IR::FlowTest>(flow_test); | 34 | return static_cast<IR::FlowTest>(flow_test); |
| 35 | } | 35 | } |
| 36 | 36 | ||
| 37 | [[nodiscard]] std::pair<IR::Pred, bool> Pred() const noexcept { | 37 | [[nodiscard]] std::pair<IR::Pred, bool> GetPred() const noexcept { |
| 38 | return {static_cast<IR::Pred>(pred), pred_negated != 0}; | 38 | return {static_cast<IR::Pred>(pred), pred_negated != 0}; |
| 39 | } | 39 | } |
| 40 | 40 | ||