diff --git a/Source/cmListFileCache.h b/Source/cmListFileCache.h index b28baa53c7..473fb629a3 100644 --- a/Source/cmListFileCache.h +++ b/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; };