Explorar o código

ERR: Added operator != for SGI.

Brad King %!s(int64=23) %!d(string=hai) anos
pai
achega
ad5d35c6cf
Modificáronse 1 ficheiros con 4 adicións e 0 borrados
  1. 4 0
      Source/cmListFileCache.h

+ 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;
 };