Merge pull request #447 from expipiplus1/master

Fix warnings under Visual Studio 12
pull/448/head
Alexander Gessler 2015-01-26 19:41:57 +01:00
commit dee3a2c6d9
2 changed files with 6 additions and 6 deletions

View File

@ -96,11 +96,11 @@ void SweepContext::InitTriangulation()
void SweepContext::InitEdges(std::vector<Point*> polyline) void SweepContext::InitEdges(std::vector<Point*> polyline)
{ {
int num_points = polyline.size(); std::size_t num_points = polyline.size();
for (int i = 0; i < num_points; i++) { for (std::size_t i = 0; i < num_points - 1; i++) {
int j = i < num_points - 1 ? i + 1 : 0; edge_list.push_back(new Edge(*polyline[i], *polyline[i + 1]));
edge_list.push_back(new Edge(*polyline[i], *polyline[j]));
} }
edge_list.push_back(new Edge(*polyline.back(), *polyline.front()));
} }
Point* SweepContext::GetPoint(const int& index) Point* SweepContext::GetPoint(const int& index)

View File

@ -64,7 +64,7 @@ void set_tail(Point* p1);
Point* tail(); Point* tail();
int point_count(); std::size_t point_count();
Node& LocateNode(Point& point); Node& LocateNode(Point& point);
@ -156,7 +156,7 @@ inline AdvancingFront* SweepContext::front()
return front_; return front_;
} }
inline int SweepContext::point_count() inline std::size_t SweepContext::point_count()
{ {
return points_.size(); return points_.size();
} }