Compiling spine-cpp with mingw and -Werror results in:
/home/ben/Dev/march/krit/spine-runtimes/spine-cpp/spine-cpp/src/spine/PhysicsConstraintTimeline.cpp:98:75: error: ‘this’ pointer is null [-Werror=nonnull]
98 | if (constraint->_active) constraint->reset();
|
This looks like a real issue as constraint is definitely null here. The intent seems pretty clear though so here's a quick fix - feel free to throw it away and fix it a different way.
Compiling spine-cpp with mingw and -Werror results in:
This looks like a real issue as
constraint
is definitely null here. The intent seems pretty clear though so here's a quick fix - feel free to throw it away and fix it a different way.