1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #ifndef BOOST_URL_OPTIONAL_HPP
- #define BOOST_URL_OPTIONAL_HPP
- #include <boost/url/detail/config.hpp>
- #include <boost/optional.hpp>
- namespace boost {
- namespace urls {
- #ifndef BOOST_URL_DOCS
- template<class T>
- using optional
- BOOST_URL_DEPRECATED("Use boost::optional<T> instead") =
- boost::optional<T>;
- #else
- template<class T>
- using optional = boost::optional<T>;
- #endif
- }
- }
- #endif
|