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