瀏覽代碼

ERR: Added operator != for SGI.

Brad King 23 年之前
父節點
當前提交
ad5d35c6cf
共有 1 個文件被更改,包括 4 次插入0 次删除
  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;
 };