diff options
| author | Lioncash <mathew1800@gmail.com> | 2019-10-05 08:40:24 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2019-10-05 09:14:26 -0400 |
| commit | 43503a69bf730125b380601a919e81ca09afeb74 (patch) | |
| tree | 8722651e27ff03e158042e7358f4f1e59993b363 /src/video_core/shader/expr.h | |
| parent | 50ad74558566af897db6d7a999101e40ee544108 (diff) | |
video_core/{ast, expr}: Organize forward declaration
Keeps them alphabetically sorted for readability.
Diffstat (limited to 'src/video_core/shader/expr.h')
| -rw-r--r-- | src/video_core/shader/expr.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_core/shader/expr.h b/src/video_core/shader/expr.h index 45695c0ed..d3dcd00ec 100644 --- a/src/video_core/shader/expr.h +++ b/src/video_core/shader/expr.h @@ -15,12 +15,12 @@ using Tegra::Shader::ConditionCode; using Tegra::Shader::Pred; class ExprAnd; -class ExprOr; +class ExprBoolean; +class ExprCondCode; class ExprNot; +class ExprOr; class ExprPredicate; -class ExprCondCode; class ExprVar; -class ExprBoolean; using ExprData = std::variant<ExprVar, ExprCondCode, ExprPredicate, ExprNot, ExprOr, ExprAnd, ExprBoolean>; |
