1234567891011121314151617181920212223242526272829303132 |
- #ifndef BOOST_JSON_IMPL_VALUE_HPP
- #define BOOST_JSON_IMPL_VALUE_HPP
- namespace boost {
- namespace json {
- value&
- value::at_pointer(string_view ptr, source_location const& loc) &
- {
- auto const& self = *this;
- return const_cast<value&>( self.at_pointer(ptr, loc) );
- }
- value&&
- value::at_pointer(string_view ptr, source_location const& loc) &&
- {
- return std::move( at_pointer(ptr, loc) );
- }
- }
- }
- #endif
|