From 108922784d8382759776212ef17c99cb37c36d10 Mon Sep 17 00:00:00 2001 From: Kjell Hedstrom Date: Mon, 16 Feb 2015 02:16:25 -0700 Subject: [PATCH] Changed what was thrown --- example/main_fatal_choice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/main_fatal_choice.cpp b/example/main_fatal_choice.cpp index b5161a5..fb8e6b0 100644 --- a/example/main_fatal_choice.cpp +++ b/example/main_fatal_choice.cpp @@ -136,7 +136,7 @@ void ExecuteDeathFunction(const bool runInNewThread, int fatalChoice) { case 8: exitFunction = &OutOfBoundsArrayIndexing; break; case 9: exitFunction = &AccessViolation; break; case 10: exitFunction = &RaiseSIGABRTAndAccessViolation; break; - case 11: throw 123456789; break; + case 11: throw 1233210; break; default: break; } if (runInNewThread) {