소스 검색

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