/// The token.
token_type token () const;
+ enum { empty = 0 };
+
/// The symbol type.
///
/// -1 when this symbol is empty.
// by_type.
inline
]b4_parser_class_name[::by_type::by_type ()
- : type (-1)
+ : type (empty)
{}
inline
]b4_parser_class_name[::by_type::move (by_type& that)
{
type = that.type;
- that.type = -1;
+ that.type = empty;
}
inline