video_core/{ast, expr}: Organize forward declaration

Keeps them alphabetically sorted for readability.
This commit is contained in:
Lioncash 2019-10-05 08:40:24 -04:00
parent 50ad745585
commit 43503a69bf
2 changed files with 14 additions and 14 deletions

View file

@ -15,12 +15,12 @@ using Tegra::Shader::ConditionCode;
using Tegra::Shader::Pred;
class ExprAnd;
class ExprOr;
class ExprNot;
class ExprPredicate;
class ExprCondCode;
class ExprVar;
class ExprBoolean;
class ExprCondCode;
class ExprNot;
class ExprOr;
class ExprPredicate;
class ExprVar;
using ExprData =
std::variant<ExprVar, ExprCondCode, ExprPredicate, ExprNot, ExprOr, ExprAnd, ExprBoolean>;