Explorar el Código

ERR: Added operator != for SGI.

Brad King hace 23 años
padre
commit
ad5d35c6cf
Se han modificado 1 ficheros con 4 adiciones y 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;
 };