1
0
mirror of https://github.com/wolfpld/tracy synced 2025-04-30 04:43:53 +00:00

Don't create variable for exception in catch block.

This commit is contained in:
Bartosz Taudul 2019-06-22 13:41:24 +02:00
parent eb4c7ca9ea
commit 323f0e1ae3
2 changed files with 2 additions and 2 deletions

View File

@ -456,7 +456,7 @@ int main( int argc, char** argv )
} ); } );
} }
} }
catch( const tracy::NotTracyDump& e ) catch( const tracy::NotTracyDump& )
{ {
badVer = -1; badVer = -1;
} }

View File

@ -7025,7 +7025,7 @@ void View::DrawCompare()
} ); } );
} }
} }
catch( const tracy::NotTracyDump& e ) catch( const tracy::NotTracyDump& )
{ {
m_compare.badVer = -1; m_compare.badVer = -1;
} }