mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-05-31 17:10:51 +00:00
Renamed "VectorInitializer" to "VectorValue"
This was really confusing for me as this is an actual vector "value" rather than an "initializer"
This commit is contained in:
parent
ac1c022911
commit
94410accf4
6 changed files with 37 additions and 43 deletions
|
@ -98,7 +98,7 @@ enum EZCCTreeNodeType
|
|||
AST_Default,
|
||||
AST_FlagStmt,
|
||||
AST_PropertyStmt,
|
||||
AST_VectorInitializer,
|
||||
AST_VectorValue,
|
||||
|
||||
NUM_AST_NODE_TYPES
|
||||
};
|
||||
|
@ -385,7 +385,7 @@ struct ZCC_ExprTrinary : ZCC_Expression
|
|||
ZCC_Expression *Right;
|
||||
};
|
||||
|
||||
struct ZCC_VectorInitializer : ZCC_Expression
|
||||
struct ZCC_VectorValue : ZCC_Expression
|
||||
{
|
||||
ZCC_Expression *X, *Y, *Z;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue