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