xo-tokenizer: fix: missing return statement
This commit is contained in:
parent
d522d36899
commit
5ed786adc0
1 changed files with 1 additions and 1 deletions
|
|
@ -69,7 +69,7 @@ namespace xo {
|
|||
/** true if tokenizer contains stored prefix of
|
||||
* possibly-incomplete token
|
||||
**/
|
||||
bool has_prefix() const { !prefix_.empty(); }
|
||||
bool has_prefix() const { return !prefix_.empty(); }
|
||||
|
||||
/** assemble token from text @p token_text
|
||||
**/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue