Fix SkeletonBounds::getPolygon() for latest Clang on macOS.

This commit is contained in:
Mario Zechner 2023-06-12 14:27:55 +02:00 committed by GitHub
parent 2d9bdb0ec3
commit 41a9790270
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}