Skip to content

Commit

Permalink
Revert "Fixed an error where implicit pointer casts should've failed …
Browse files Browse the repository at this point in the history
…but didn't."

This reverts commit 68d3f47.

# Conflicts:
#	src/common/scripting/backend/codegen.cpp
  • Loading branch information
madame-rachelle committed Feb 11, 2023
1 parent 17800f2 commit ea72060
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/common/scripting/backend/codegen.cpp
Expand Up @@ -274,14 +274,6 @@ bool AreCompatiblePointerTypes(PType *dest, PType *source, bool forcompare)
{
auto fromtype = source->toPointer();
auto totype = dest->toPointer();
// implicit pointer casts
if( fromtype->isClassPointer() && !totype->isClassPointer() ) totype->toClassPointer(fromtype); // just to make sure they're compatible pointer types
else if( !fromtype->isClassPointer() && totype->isClassPointer() ) fromtype->toClassPointer(totype); // just to make sure they're compatible pointer types
else if( fromtype->PointedType != totype->PointedType )
{
auto res = fromtype->PointedType->toClass(totype->PointedType);
if(!res || res != totype->PointedType) return false;
}
// null pointers can be assigned to everything, everything can be assigned to void pointers.
if (fromtype == nullptr || totype == TypeVoidPtr) return true;
// when comparing const-ness does not matter.
Expand Down

0 comments on commit ea72060

Please sign in to comment.