id summary reporter owner description type status milestone component version severity resolution keywords cc 13469 Getting lot of warnings for simple code which is using boost::Intersection sumanth.kaliki@… Lucanus Simonson "The simple code below is generating a lot of warnings in boost 1_61_0 version. {{{ #include #include #include #include #include struct Vertex2D { double X; double Y; }; BOOST_GEOMETRY_REGISTER_POINT_2D(Vertex2D, double, cs::cartesian, X, Y); typedef std::vector Ring; BOOST_GEOMETRY_REGISTER_RING(Ring); typedef boost::geometry::model::polygon Polygon; int main() { Polygon p1; Polygon p2; std::vector intersections; boost::geometry::intersection(p1, p2, intersections); return 0; } }}} " Support Requests new To Be Determined polygon Boost 1.61.0 Problem