Fix a -Wundef warning on clang

Resolves #715
This commit is contained in:
Elias Kosunen 2018-04-22 18:29:29 +03:00 committed by Victor Zverovich
parent b1f68c43b5
commit 90ff31b38e

View File

@ -131,7 +131,7 @@
# endif
#endif
#if FMT_HAS_GXX_CXX11 || FMT_MSC_VER >= 1600
#if FMT_HAS_GXX_CXX11 || FMT_HAS_FEATURE(cxx_trailing_return) || FMT_MSC_VER >= 1600
# define FMT_USE_TRAILING_RETURN 1
#endif