Fix compatibility with >= c++17.

This commit is contained in:
Roman Telezhynskyi 2024-02-17 20:06:56 +02:00
parent 6d04cd32a7
commit ad0d3c1612

View file

@ -87,7 +87,7 @@ auto StrToGrainlineType(const QString &string) -> GrainlineType
//---------------------------------------------------------------------------------------------------------------------
auto VPTransformationOrigon::operator==(const VPTransformationOrigon &origin) const -> bool
{
return origin == origin.origin && custom == origin.custom;
return this->origin == origin.origin && custom == origin.custom;
}
//---------------------------------------------------------------------------------------------------------------------