123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- #ifndef BOOST_URL_RFC_GEN_DELIM_CHARS_HPP
- #define BOOST_URL_RFC_GEN_DELIM_CHARS_HPP
- #include <boost/url/detail/config.hpp>
- #include <boost/url/grammar/lut_chars.hpp>
- namespace boost {
- namespace urls {
- constexpr
- grammar::lut_chars
- gen_delim_chars = ":/?#[]@";
- }
- }
- #endif
|