Ticket #6582: boost-01.patch

File boost-01.patch, 525 bytes (added by JL <julio.lopez@…>, 11 years ago)

Patch with a way of solving it.

  • boost/property_tree/detail/json_parser_read.hpp

    diff --git a/boost/property_tree/detail/json_parser_read.hpp b/boost/property_tree/detail/json_parser_read.hpp
    index 3849450..80d32bf 100644
    a b namespace boost { namespace property_tree { namespace json_parser  
    114114            a_char(context &c): c(c) { }
    115115            void operator()(It b, It e) const
    116116            {
     117                (void)e;
    117118                c.string += *b;
    118119            }
    119120        };