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);
|
return (this->Value == r.Value) && (this->Quoted == r.Quoted);
|
||||||
}
|
}
|
||||||
|
bool operator != (const cmListFileArgument& r) const
|
||||||
|
{
|
||||||
|
return !(*this == r);
|
||||||
|
}
|
||||||
std::string Value;
|
std::string Value;
|
||||||
bool Quoted;
|
bool Quoted;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user