- backend cleanup from GZDoom.

This commit is contained in:
Christoph Oelckers 2022-12-18 16:31:50 +01:00
parent d7da983c5e
commit b1e2b2addf
8 changed files with 41 additions and 11 deletions

View file

@ -560,11 +560,10 @@ public:
class FxVectorValue : public FxExpression
{
constexpr static int maxVectorDimensions = 4;
FxExpression *xyzw[maxVectorDimensions];
bool isConst; // gets set to true if all element are const (used by function defaults parser)
public:
FxExpression *xyzw[maxVectorDimensions];
friend class ZCCCompiler;