[commit] r1120 - trunk/GME/Parser

GMESRC Repository Notifications gme-commit at list.isis.vanderbilt.edu
Mon Jan 10 09:58:50 CST 2011


Author: ksmyth
Date: Mon Jan 10 09:58:50 2011
New Revision: 1120

Log:
Comparing COM interface pointers that arent IUnknown is undefined

Modified:
   trunk/GME/Parser/MgaParser.h

Modified: trunk/GME/Parser/MgaParser.h
==============================================================================
--- trunk/GME/Parser/MgaParser.h	Mon Jan 10 09:58:19 2011	(r1119)
+++ trunk/GME/Parser/MgaParser.h	Mon Jan 10 09:58:50 2011	(r1120)
@@ -21,6 +21,7 @@
  public:
 	 bool operator()( const CComObjPtr<IMgaFCO>& p1, const CComObjPtr<IMgaFCO>& p2) const
 	 {
+		 // FIXME: comparing IMgaFCO* is not defined
 		 return p1.p < p2.p;
 	 }
 };


More information about the gme-commit mailing list