Use C-style casts

This commit is contained in:
SR_team 2022-06-18 20:46:22 +03:00 committed by GitHub
parent df5664b4c1
commit 6052e159c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -343,7 +343,7 @@ struct Matrix
void destroy(void);
void setIdentity(void);
void optimize(Tolerance *tolerance = nil);
void update(void) { flags &= ~(static_cast<int>(IDENTITY) | static_cast<int>(TYPEMASK)); }
void update(void) { flags &= ~(int(IDENTITY) | int(TYPEMASK)); }
static Matrix *mult(Matrix *dst, const Matrix *src1, const Matrix *src2);
static Matrix *invert(Matrix *dst, const Matrix *src);
static Matrix *transpose(Matrix *dst, const Matrix *src);