mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-21 22:50:26 -06:00
ERR: Added operator != for SGI.
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user