diff options
-rw-r--r-- | Source/cmListFileCache.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmListFileCache.h b/Source/cmListFileCache.h index b28baa5..473fb62 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; }; |