Ticket #9281: string_path_value_accessor.patch

File string_path_value_accessor.patch, 542 bytes (added by jean, 9 years ago)
  • property_tree/string_path.hpp

     
    125125        /// Get the separator used by this path.
    126126        char_type separator() const { return m_separator; }
    127127
     128        /// Get the value of this path.
     129        String const& value() const { return m_value; }
     130
    128131        std::string dump() const {
    129132            return detail::dump_sequence(m_value);
    130133        }