Don't care about std::regex_error value.

This commit is contained in:
Bartosz Taudul
2022-08-14 18:18:15 +02:00
parent df00870a4b
commit b0ac78dde1
2 changed files with 2 additions and 2 deletions

View File

@@ -272,7 +272,7 @@ bool UserData::LoadSourceSubstitutions( std::vector<SourceRegex>& data )
{
regex.assign( pattern );
}
catch( std::regex_error& err )
catch( std::regex_error& )
{
regexValid = false;
}