mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 02:31:48 +00:00
Don't care about std::regex_error value.
This commit is contained in:
parent
df00870a4b
commit
b0ac78dde1
@ -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;
|
||||
}
|
||||
|
@ -853,7 +853,7 @@ void View::DrawInfo()
|
||||
{
|
||||
v.regex.assign( v.pattern );
|
||||
}
|
||||
catch( std::regex_error& err )
|
||||
catch( std::regex_error& )
|
||||
{
|
||||
regexValid = false;
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user