mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
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:
parent
4c79b5af5d
commit
615e0efccd
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user