Do not override user provided compile flag

This commit is contained in:
Johan J 2018-12-03 14:54:44 +01:00 committed by Victor Zverovich
parent 0c7f5c3ca4
commit e867768ee6

View File

@ -112,12 +112,14 @@
#endif
// Check if exceptions are disabled.
#ifndef FMT_EXCEPTIONS
#if (defined(__GNUC__) && !defined(__EXCEPTIONS)) || \
FMT_MSC_VER && !_HAS_EXCEPTIONS
# define FMT_EXCEPTIONS 0
#else
# define FMT_EXCEPTIONS 1
#endif
#endif
// Define FMT_USE_NOEXCEPT to make fmt use noexcept (C++11 feature).
#ifndef FMT_USE_NOEXCEPT