Fix hidden-overload in Types and remove CMake hack

This commit is contained in:
Nikola Matic
2023-05-09 19:33:23 +02:00
parent d370f53b7e
commit 3bab14747e
4 changed files with 7 additions and 12 deletions
+1 -1
View File
@@ -803,7 +803,7 @@ public:
/// if the type has an interfaceType.
virtual BoolResult validForLocation(DataLocation _loc) const = 0;
bool operator==(ReferenceType const& _other) const
bool equals(ReferenceType const& _other) const
{
return location() == _other.location() && isPointer() == _other.isPointer();
}