Allow compilation on platforms with unwind (android)

This commit is contained in:
Costin Manolache 2017-11-02 17:12:08 -07:00 committed by GitHub
parent 47c17be9a1
commit 23dd8d3559
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@
#define SPDLOG_DEPRECATED
#endif
#ifdef __linux__
#if defined(__linux__) && !defined(SPDLOG_NO_UNWIND)
#include <cxxabi.h>
#define SPDLOG_CATCH_ALL catch (abi::__forced_unwind&) { _err_handler("Unknown exception"); throw; } catch (...)
#else // __linux__