]> git.jsancho.org Git - lugaru.git/commitdiff
Disabling exception catching when building debug, to ease gdb use
authorCôme Chilliet <come@chilliet.eu>
Sat, 10 Dec 2016 18:00:09 +0000 (01:00 +0700)
committerCôme Chilliet <come@chilliet.eu>
Sat, 10 Dec 2016 18:00:09 +0000 (01:00 +0700)
Source/main.cpp

index 4ff4ebc29d788e0063ef18e70bbe2b0e1b44686b..4ad68539203a1276274f91976449a7a26f7f8728 100644 (file)
@@ -626,7 +626,9 @@ int main(int argc, char **argv)
 
     LOGFUNC;
 
+#ifndef NDEBUG
     try {
+#endif
         {
             newGame();
 
@@ -677,6 +679,7 @@ int main(int argc, char **argv)
         CleanUp ();
 
         return 0;
+#ifndef NDEBUG
     } catch (const std::exception& error) {
         CleanUp();
 
@@ -689,4 +692,5 @@ int main(int argc, char **argv)
 
         return -1;
     }
+#endif
 }