reorder warning
This commit is contained in:
parent
4830b582da
commit
dd33046a56
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ token::type token::token_info(char c) {
|
||||||
}
|
}
|
||||||
|
|
||||||
token::token(const std::string& str, std::size_t skip_left, std::size_t skip_right):
|
token::token(const std::string& str, std::size_t skip_left, std::size_t skip_right):
|
||||||
m_eol(false), m_ws_only(false), m_raw(str)
|
m_raw(str), m_eol(false), m_ws_only(false)
|
||||||
{
|
{
|
||||||
if(skip_left != 0 && skip_right != 0) {
|
if(skip_left != 0 && skip_right != 0) {
|
||||||
if(str[skip_left] == '{' && str[str.size() - skip_right - 1] == '}') {
|
if(str[skip_left] == '{' && str[str.size() - skip_right - 1] == '}') {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue