Allow LOG_* auxiliary variables in various commands

Closes: #107
master
Sébastien Villemot 2022-12-14 12:42:55 +01:00
parent a234176d3c
commit 8734bc5ca6
No known key found for this signature in database
GPG Key ID: 2CECE9350ECEBE4A
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ SymbolList::checkPass(WarningConsolidation &warnings, const vector<SymbolType> &
for (auto type : types)
if (type == SymbolType::endogenous)
{
regex_str += "|AUX_ENDO_";
regex_str += "|AUX_ENDO_|LOG_";
break;
}
regex re("^(" + regex_str +")");