Fixed handling of PCRE rules, since 'simple' rules have been removed already, set default to 'normal'-tokenlist.

This commit is contained in:
orbitcowboy 2022-06-20 09:17:11 +02:00
parent 6843bf628b
commit ff50a01d36
1 changed files with 1 additions and 1 deletions

View File

@ -257,7 +257,7 @@ public:
class CPPCHECKLIB Rule {
public:
Rule()
: tokenlist("simple") // use simple tokenlist
: tokenlist("normal") // use normal tokenlist
, id("rule") // default id
, severity(Severity::style) { // default severity
}