diff --git a/src/core/parseutil.cpp b/src/core/parseutil.cpp index 26187d4a..9aa96b86 100644 --- a/src/core/parseutil.cpp +++ b/src/core/parseutil.cpp @@ -272,6 +272,7 @@ QMap ParseUtil::readCDefines(QString filename, QStringList prefixe } text.replace(QRegularExpression("(//.*)|(\\/+\\*+[^*]*\\*+\\/+)"), ""); + text.replace(QRegularExpression("(\\\\\\s+)"), ""); QRegularExpression re("#define\\s+(?\\w+)[^\\S\\n]+(?.+)"); QRegularExpressionMatchIterator iter = re.globalMatch(text);