1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #ifndef BOOST_URL_RFC_RESERVED_CHARS_HPP
- #define BOOST_URL_RFC_RESERVED_CHARS_HPP
- #include <boost/url/detail/config.hpp>
- #include <boost/url/rfc/unreserved_chars.hpp>
- namespace boost {
- namespace urls {
- constexpr auto reserved_chars = ~unreserved_chars;
- }
- }
- #endif
|