Skip to content

Commit 15c0596

Browse files
committed
Removed redundant operators
1 parent 9e566cd commit 15c0596

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

Inc/DirectXMath.h

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -836,9 +836,6 @@ __declspec(align(16)) struct XMFLOAT4X3A : public XMFLOAT4X3
836836
float m30, float m31, float m32) :
837837
XMFLOAT4X3(m00,m01,m02,m10,m11,m12,m20,m21,m22,m30,m31,m32) {}
838838
explicit XMFLOAT4X3A(_In_reads_(12) const float *pArray) : XMFLOAT4X3(pArray) {}
839-
840-
float operator() (size_t Row, size_t Column) const { return m[Row][Column]; }
841-
float& operator() (size_t Row, size_t Column) { return m[Row][Column]; }
842839
};
843840

844841
//------------------------------------------------------------------------------
@@ -900,9 +897,6 @@ __declspec(align(16)) struct XMFLOAT4X4A : public XMFLOAT4X4
900897
float m30, float m31, float m32, float m33)
901898
: XMFLOAT4X4(m00,m01,m02,m03,m10,m11,m12,m13,m20,m21,m22,m23,m30,m31,m32,m33) {}
902899
explicit XMFLOAT4X4A(_In_reads_(16) const float *pArray) : XMFLOAT4X4(pArray) {}
903-
904-
float operator() (size_t Row, size_t Column) const { return m[Row][Column]; }
905-
float& operator() (size_t Row, size_t Column) { return m[Row][Column]; }
906900
};
907901

908902
////////////////////////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)