Browse Source

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

Mario Zechner 2 years ago
parent
commit
41a9790270
1 changed files with 1 additions and 1 deletions
  1. 1 1
      spine-cpp/spine-cpp/src/spine/SkeletonBounds.cpp

+ 1 - 1
spine-cpp/spine-cpp/src/spine/SkeletonBounds.cpp

@@ -190,7 +190,7 @@ BoundingBoxAttachment *SkeletonBounds::getBoundingBox(Polygon *polygon) {
 	return index == -1 ? NULL : _boundingBoxes[index];
 	return index == -1 ? NULL : _boundingBoxes[index];
 }
 }
 
 
-Vector<Polygon *> &SkeletonBounds::getPolygons() {
+Vector<spine::Polygon *> &SkeletonBounds::getPolygons() {
 	return _polygons;
 	return _polygons;
 }
 }