Upgrade to UE5.5 throwing errors regarding the use of native pointers.

It’s just required now, update your pointers from:
MyPointerType* VariableName
to
TObjectPtr<MyPointerType> VariableName

It’s a lot of find and replace, but a simple update.