From 5a648b300f8e8ca8246cc1873fa3a280e209d529 Mon Sep 17 00:00:00 2001 From: vitaut Date: Mon, 19 Oct 2015 08:39:31 -0700 Subject: [PATCH] Suppress another bogus warning in Coverity --- test/test-main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test-main.cc b/test/test-main.cc index 350044da..ef412406 100644 --- a/test/test-main.cc +++ b/test/test-main.cc @@ -52,8 +52,8 @@ int main(int argc, char **argv) { _CrtSetReportFile(_CRT_ERROR, _CRTDBG_FILE_STDERR); _CrtSetReportMode(_CRT_ASSERT, _CRTDBG_MODE_FILE | _CRTDBG_MODE_DEBUG); _CrtSetReportFile(_CRT_ASSERT, _CRTDBG_FILE_STDERR); - testing::InitGoogleTest(&argc, argv); try { + testing::InitGoogleTest(&argc, argv); return RUN_ALL_TESTS(); } catch (...) { // Catch all exceptions to make Coverity happy.