123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #ifndef BOOST_URL_VARIANT_HPP
- #define BOOST_URL_VARIANT_HPP
- #include <boost/url/detail/config.hpp>
- #include <boost/variant2/variant.hpp>
- namespace boost {
- namespace urls {
- template<class... Ts>
- using variant
- BOOST_URL_DEPRECATED("Use variant2::variant instead") =
- boost::variant2::variant<Ts...>;
- }
- }
- #endif
|