From b695238f47f0b5e816c195307178a5707449dc4a Mon Sep 17 00:00:00 2001 From: cryptozoidberg Date: Thu, 13 Feb 2020 23:58:44 +0100 Subject: [PATCH] disabled terminate handler --- src/wallet/wallets_manager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wallet/wallets_manager.cpp b/src/wallet/wallets_manager.cpp index 61a46d3d..85cb5477 100644 --- a/src/wallet/wallets_manager.cpp +++ b/src/wallet/wallets_manager.cpp @@ -107,10 +107,10 @@ bool wallets_manager::init(int argc, char* argv[], view::i_view* pview_handler) // setup custom callstack retrieving function epee::misc_utils::get_callstack(tools::get_callstack); - +#ifndef IOS_BUILD // setup custom terminate functions std::set_terminate(&terminate_handler_func); - +#endif //#if !defined(NDEBUG) // log_space::log_singletone::add_logger(LOGGER_DEBUGGER, nullptr, nullptr); //#endif