1
0
Эх сурвалжийг харах

ERR: Added operator != for SGI.

Brad King 23 жил өмнө
parent
commit
ad5d35c6cf

+ 4 - 0
Source/cmListFileCache.h

@@ -35,6 +35,10 @@ struct cmListFileArgument
     {
     return (this->Value == r.Value) && (this->Quoted == r.Quoted);
     }
+  bool operator != (const cmListFileArgument& r) const
+    {
+    return !(*this == r);
+    }
   std::string Value;
   bool Quoted;
 };