ERR: Added operator != for SGI.

This commit is contained in:
Brad King 2002-12-17 14:55:31 -05:00
parent bd74882d3e
commit ad5d35c6cf
1 changed files with 4 additions and 0 deletions

View File

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