2
0
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:
Hartmut Kaiser
2007-04-03 14:02:00 +00:00
parent b067624e87
commit 31d06f9594
4 changed files with 4 additions and 4 deletions

View File

@@ -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_); }