From 87b921372cb60d4b0ec266bec44f97eced144d1a Mon Sep 17 00:00:00 2001 From: =?utf8?q?C=C3=B4me=20Chilliet?= Date: Sun, 11 Dec 2016 01:10:14 +0700 Subject: [PATCH] Oops, should be ifdef not ifndef --- Source/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/main.cpp b/Source/main.cpp index 4ad6853..2803226 100644 --- a/Source/main.cpp +++ b/Source/main.cpp @@ -626,7 +626,7 @@ int main(int argc, char **argv) LOGFUNC; -#ifndef NDEBUG +#ifdef NDEBUG try { #endif { @@ -679,7 +679,7 @@ int main(int argc, char **argv) CleanUp (); return 0; -#ifndef NDEBUG +#ifdef NDEBUG } catch (const std::exception& error) { CleanUp(); -- 2.39.2