bump simplecpp (#2368)
This commit is contained in:
parent
7cd7aff60a
commit
e0fe8fa2cd
|
@ -768,7 +768,7 @@ void simplecpp::TokenList::combineOperators()
|
||||||
if (tok->previous && tok->previous->number) {
|
if (tok->previous && tok->previous->number) {
|
||||||
tok->setstr(tok->previous->str() + '.');
|
tok->setstr(tok->previous->str() + '.');
|
||||||
deleteToken(tok->previous);
|
deleteToken(tok->previous);
|
||||||
if (isFloatSuffix(tok->next) || (tok->next && tok->next->startsWithOneOf("Ee"))) {
|
if (isFloatSuffix(tok->next) || (tok->next && tok->next->startsWithOneOf("AaBbCcDdEeFfPp"))) {
|
||||||
tok->setstr(tok->str() + tok->next->str());
|
tok->setstr(tok->str() + tok->next->str());
|
||||||
deleteToken(tok->next);
|
deleteToken(tok->next);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue