Suppress another bogus warning in Coverity

This commit is contained in:
vitaut 2015-10-19 08:39:31 -07:00
parent 85a93a8078
commit 5a648b300f

View File

@ -52,8 +52,8 @@ int main(int argc, char **argv) {
_CrtSetReportFile(_CRT_ERROR, _CRTDBG_FILE_STDERR); _CrtSetReportFile(_CRT_ERROR, _CRTDBG_FILE_STDERR);
_CrtSetReportMode(_CRT_ASSERT, _CRTDBG_MODE_FILE | _CRTDBG_MODE_DEBUG); _CrtSetReportMode(_CRT_ASSERT, _CRTDBG_MODE_FILE | _CRTDBG_MODE_DEBUG);
_CrtSetReportFile(_CRT_ASSERT, _CRTDBG_FILE_STDERR); _CrtSetReportFile(_CRT_ASSERT, _CRTDBG_FILE_STDERR);
testing::InitGoogleTest(&argc, argv);
try { try {
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS(); return RUN_ALL_TESTS();
} catch (...) { } catch (...) {
// Catch all exceptions to make Coverity happy. // Catch all exceptions to make Coverity happy.