Comment 'RESTRICT' keyword

Causes compile errors in clang-cl as the functions it calls do not take a restricted pointer.
This commit is contained in:
Kawe Mazidjatari 2023-04-01 22:11:41 +02:00
parent 4c79b5af5d
commit 615e0efccd

View File

@ -537,7 +537,7 @@ public:
#endif
// rotate (in place) a FourVectors by this quaternion. there's a corresponding RotateBy in FourVectors.
FORCEINLINE void RotateFourVectors(FourVectors* RESTRICT vecs) const RESTRICT;
FORCEINLINE void RotateFourVectors(FourVectors* /*RESTRICT*/ vecs) const /*RESTRICT*/;
/// LoadAndSwizzleAligned - load 4 QuaternionAligneds into a FourQuaternions, performing transpose op.
@ -890,7 +890,7 @@ FORCEINLINE FourQuaternions FourQuaternions::Mul(FourQuaternions const& q) const
}
FORCEINLINE void FourQuaternions::RotateFourVectors(FourVectors* RESTRICT vecs) const RESTRICT
FORCEINLINE void FourQuaternions::RotateFourVectors(FourVectors* /*RESTRICT*/ vecs) const /*RESTRICT*/
{
fltx4 tmpX, tmpY, tmpZ, tmpW;
fltx4 outX, outY, outZ;