Fix compatibility with >= c++17.
This commit is contained in:
parent
6d04cd32a7
commit
ad0d3c1612
|
@ -87,7 +87,7 @@ auto StrToGrainlineType(const QString &string) -> GrainlineType
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
auto VPTransformationOrigon::operator==(const VPTransformationOrigon &origin) const -> bool
|
auto VPTransformationOrigon::operator==(const VPTransformationOrigon &origin) const -> bool
|
||||||
{
|
{
|
||||||
return origin == origin.origin && custom == origin.custom;
|
return this->origin == origin.origin && custom == origin.custom;
|
||||||
}
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in New Issue
Block a user