Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:53:30

0001 //
0002 // Copyright (c) 2022 Vinnie Falco (vinnie.falco@gmail.com)
0003 //
0004 // Distributed under the Boost Software License, Version 1.0. (See accompanying
0005 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0006 //
0007 // Official repository: https://github.com/boostorg/url
0008 //
0009 
0010 #ifndef BOOST_URL_VARIANT_HPP
0011 #define BOOST_URL_VARIANT_HPP
0012 
0013 #include <boost/url/detail/config.hpp>
0014 #include <boost/variant2/variant.hpp>
0015 
0016 namespace boost {
0017 namespace urls {
0018 
0019 /** The type of variant used by the library
0020 */
0021 template<class... Ts>
0022 using variant
0023     BOOST_URL_DEPRECATED("Use variant2::variant instead") =
0024     boost::variant2::variant<Ts...>;
0025 
0026 } // urls
0027 } // boost
0028 
0029 #endif