summaryrefslogtreecommitdiffhomepage
path: root/gui/main.cpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2016-12-24 22:15:09 +0100
committerStanislaw Halik <sthalik@misaki.pl>2016-12-24 22:15:09 +0100
commit24117ee74b7c4dfd982af9b94915cba505fd64e6 (patch)
treea8466487ded7922865553e210dbc3a59a42ac5e6 /gui/main.cpp
parented3d655eae7830235789168f5f4b3aa39854adb3 (diff)
gui/main: with vc2015 it doesn't crash on exit
Turns out vc2017 RC miscompiled Qt libs leading to a crash around RtlHeapFree.
Diffstat (limited to 'gui/main.cpp')
-rw-r--r--gui/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/main.cpp b/gui/main.cpp
index 5cc041fb..767a12ab 100644
--- a/gui/main.cpp
+++ b/gui/main.cpp
@@ -172,7 +172,7 @@ main(int argc, char** argv)
while (false);
// msvc crashes in some destructor
-#if defined(_MSC_VER)
+#if defined(_MSC_VER) && 0 && I_DONT_HURT_ANYMORE
qDebug() << "exit: terminating";
TerminateProcess(GetCurrentProcess(), 0);
#endif