12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #ifndef BOOST_URL_STRING_VIEW_HPP
- #define BOOST_URL_STRING_VIEW_HPP
- #include <boost/url/detail/config.hpp>
- #include <boost/url/detail/string_view.hpp>
- namespace boost {
- namespace urls {
- using string_view
- BOOST_URL_DEPRECATED("Use core::string_view instead") =
- boost::core::string_view;
- }
- }
- #endif
|