Skip to content

Commit

Permalink
Fix SkeletonBounds::getPolygon() for latest Clang on macOS.
Browse files Browse the repository at this point in the history
  • Loading branch information
badlogic committed Jun 12, 2023
1 parent 2d9bdb0 commit 41a9790
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spine-cpp/spine-cpp/src/spine/SkeletonBounds.cpp
Expand Up @@ -190,7 +190,7 @@ BoundingBoxAttachment *SkeletonBounds::getBoundingBox(Polygon *polygon) {
return index == -1 ? NULL : _boundingBoxes[index];
}

Vector<Polygon *> &SkeletonBounds::getPolygons() {
Vector<spine::Polygon *> &SkeletonBounds::getPolygons() {
return _polygons;
}

Expand Down

0 comments on commit 41a9790

Please sign in to comment.