From ad27ef8410ceeabbadd57ace746867f04337844b Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sun, 20 Jan 2013 02:11:53 +0100 Subject: [PATCH] Ask Google Test not to use exceptions. Gives us slightly cleaner shutdown on error. Found by Coverity Scan. --- gtest_sdl_main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gtest_sdl_main.cpp b/gtest_sdl_main.cpp index 4a1c747..21c923a 100644 --- a/gtest_sdl_main.cpp +++ b/gtest_sdl_main.cpp @@ -1,3 +1,5 @@ +#define GTEST_HAS_EXCEPTIONS 0 + #include #include "gtest/gtest.h" -- 2.39.2