Remove superfluous VCFilterFile::operator==
The default-generated operator is fine. Change-Id: I9acb310aaf551d8da3c0fd9aea65d77ee62a45b4 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io>
This commit is contained in:
parent
b4c7d4f4b3
commit
b83884a4e6
@ -913,11 +913,6 @@ struct VCFilterFile
|
||||
VCFilterFile(const QString &filename, bool exclude = false )
|
||||
{ file = filename; excludeFromBuild = exclude; }
|
||||
|
||||
bool operator==(const VCFilterFile &other){
|
||||
return file == other.file
|
||||
&& excludeFromBuild == other.excludeFromBuild;
|
||||
}
|
||||
|
||||
bool excludeFromBuild;
|
||||
QString file;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user