Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Pentarctagon committed Sep 19, 2024
1 parent bccf0e4 commit e1fd1d5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/serialization/tokenizer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ const token &tokenizer::next_token()
// handles multiple attributes on the same line
// ie: x,y = 5,5
case token::COMMA:
// tag merge aka node append
// tag merge aka node append, or string concatenation
case token::PLUS:
token_.type = static_cast<token::token_type>(current_);
token_.value = current_;
Expand Down
1 change: 0 additions & 1 deletion src/serialization/tokenizer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ struct token
DOLLAR = '$',
};

/** the token_type of the current value */
token_type type;
/** the token's value, can be either a single character or multiple characters */
std::string value;
Expand Down

0 comments on commit e1fd1d5

Please sign in to comment.