mirror of
https://github.com/boostorg/wave.git
synced 2026-02-12 00:32:17 +00:00
Wave: changed is_empty() to is_eoi().
[SVN r37345]
This commit is contained in:
@@ -205,7 +205,7 @@ public:
|
||||
operator token_id() const { return token_id(*data); }
|
||||
string_type const &get_value() const { return data->get_value(); }
|
||||
position_type const &get_position() const { return data->get_position(); }
|
||||
bool is_empty() const { token_id(*data) == T_EOI; }
|
||||
bool is_eoi() const { token_id(*data) == T_EOI; }
|
||||
|
||||
void set_token_id (token_id id_) { make_unique(); data->set_token_id(id_); }
|
||||
void set_value (string_type const &value_) { make_unique(); data->set_value(value_); }
|
||||
|
||||
Reference in New Issue
Block a user