mirror of
https://github.com/reactos/CMake.git
synced 2024-11-27 21:41:03 +00:00
ERR: Added operator != for SGI.
This commit is contained in:
parent
bd74882d3e
commit
ad5d35c6cf
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user