Avoid global dtors, just _Exit()

This commit is contained in:
Tor Lillqvist 2015-06-03 01:02:10 +03:00
parent 2312d9a962
commit f1732ba96d

View file

@ -151,7 +151,8 @@ protected:
}
}
return Application::EXIT_OK;
// Safest to just bluntly exit
_Exit(Application::EXIT_OK);
}
};