Nozomi Kodama : include: Remove useless todo's.

Alexandre Julliard julliard at winehq.org
Mon Jun 11 15:08:08 CDT 2012


Module: wine
Branch: master
Commit: 00fb537a2df066107f0249f894664ea3a3b3d741
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=00fb537a2df066107f0249f894664ea3a3b3d741

Author: Nozomi Kodama <Nozomi.Kodama at yahoo.com>
Date:   Sun Jun 10 17:00:05 2012 +0800

include: Remove useless todo's.

---

 include/d3dx9math.inl |    4 ----
 1 files changed, 0 insertions(+), 4 deletions(-)

diff --git a/include/d3dx9math.inl b/include/d3dx9math.inl
index 0d80cf9..af6b456 100644
--- a/include/d3dx9math.inl
+++ b/include/d3dx9math.inl
@@ -557,13 +557,11 @@ inline D3DXQUATERNION& D3DXQUATERNION::operator -= (CONST D3DXQUATERNION& quat)
     return *this;
 }
 
-/* TODO: uncomment this when D3DXQuaternionMultiply has been implemented
 inline D3DXQUATERNION& D3DXQUATERNION::operator *= (CONST D3DXQUATERNION& quat)
 {
     D3DXQuaternionMultiply(this, this, &quat);
     return *this;
 }
-*/
 
 inline D3DXQUATERNION& D3DXQUATERNION::operator *= (FLOAT f)
 {
@@ -604,14 +602,12 @@ inline D3DXQUATERNION D3DXQUATERNION::operator - (CONST D3DXQUATERNION& quat) co
     return D3DXQUATERNION(x - quat.x, y - quat.y, z - quat.z, w - quat.w);
 }
 
-/* TODO: uncomment this when D3DXQuaternionMultiply has been implemented
 inline D3DXQUATERNION D3DXQUATERNION::operator * (CONST D3DXQUATERNION& quat) const
 {
     D3DXQUATERNION buf;
     D3DXQuaternionMultiply(&buf, this, &quat);
     return buf;
 }
-*/
 
 inline D3DXQUATERNION D3DXQUATERNION::operator * (FLOAT f) const
 {




More information about the wine-cvs mailing list