123456789101112131415161718192021222324252627282930313233 |
- #ifndef BOOST_METAPARSE_V1_CPP11_IMPL_EMPTY_STRING_HPP
- #define BOOST_METAPARSE_V1_CPP11_IMPL_EMPTY_STRING_HPP
- namespace boost
- {
- namespace metaparse
- {
- namespace v1
- {
- namespace impl
- {
- template <class Ignore = int>
- struct empty_string
- {
- typedef empty_string type;
- static constexpr char value[1] = {0};
- };
- template <class Ignore>
- constexpr char empty_string<Ignore>::value[1];
- }
- }
- }
- }
- #endif
|