Ticket #11637: unused-argument.patch

File unused-argument.patch, 581 bytes (added by lopresti@…, 7 years ago)

Trivial patch to fix unused parameter warning

  • include/boost/geometry/geometries/adapted/boost_polygon/ring_proxy.hpp

    diff --git a/include/boost/geometry/geometries/adapted/boost_polygon/ring_proxy.hpp b/include/boost/geometry/geometries/adapted/boost_polygon/ring_proxy.hpp
    index 1616369..ace2473 100644
    a b template <>  
    5555struct modify<false>
    5656{
    5757    template <typename Ring, typename Point>
    58     static inline void push_back(Ring& ring, Point const& point)
     58    static inline void push_back(Ring& , Point const& )
    5959    {
    6060    }
    6161