12345678910111213141516171819202122232425262728293031323334 |
- #ifndef BOOST_URL_DETAIL_STRING_VIEW_HPP
- #define BOOST_URL_DETAIL_STRING_VIEW_HPP
- #include <boost/core/detail/string_view.hpp>
- namespace boost {
- namespace urls {
- namespace detail {
- template<class T>
- core::string_view
- to_sv(T const& t) noexcept
- {
- return core::string_view(t);
- }
- }
- }
- }
- #endif
|