Open kunitoki opened 4 months ago
In clipping_shape.cpp file:
clipping_shape.cpp
static Mat2D identity; // this clashes with other definitions of identity in the global namespace void ClippingShape::update(ComponentDirt value) {
consider doing this instead:
void ClippingShape::update(ComponentDirt value) { static Mat2D identity;
Related to https://github.com/rive-app/rive-cpp/issues/374 because of the using namespace rive; at the top. The using namespace is not placing subsequent declarations in that namespace but they will be in the global namespace.
using namespace rive;
In
clipping_shape.cpp
file:consider doing this instead:
Related to https://github.com/rive-app/rive-cpp/issues/374 because of the
using namespace rive;
at the top. The using namespace is not placing subsequent declarations in that namespace but they will be in the global namespace.