12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #ifndef BOOST_URL_RFC_UNRESERVED_CHARS_HPP
- #define BOOST_URL_RFC_UNRESERVED_CHARS_HPP
- #include <boost/url/detail/config.hpp>
- #include <boost/url/grammar/lut_chars.hpp>
- namespace boost {
- namespace urls {
- constexpr
- grammar::lut_chars
- unreserved_chars =
- "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
- "abcdefghijklmnopqrstuvwxyz"
- "0123456789"
- "-._~";
- }
- }
- #endif
|