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:
Leonard2 2016-10-30 04:35:01 +01:00
parent ac1c022911
commit 94410accf4
6 changed files with 37 additions and 43 deletions

View file

@ -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;
};