bump simplecpp (#2368)

This commit is contained in:
Rikard Falkeborn 2019-11-16 18:29:01 +01:00 committed by orbitcowboy
parent 7cd7aff60a
commit e0fe8fa2cd
1 changed files with 1 additions and 1 deletions

View File

@ -768,7 +768,7 @@ void simplecpp::TokenList::combineOperators()
if (tok->previous && tok->previous->number) {
tok->setstr(tok->previous->str() + '.');
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());
deleteToken(tok->next);
}