Unverified Commit eff159ba authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

work around issue of the Intel compiler disguising as clang on macos

parent c5698ac9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -74,7 +74,7 @@
#endif

#if __cplusplus == 201103L || __cplusplus == 201402L
#  if defined(__clang__)
#  if defined(__clang__) && !defined(__INTEL_COMPILER)
#    define FMT_FALLTHROUGH [[clang::fallthrough]]
#  elif FMT_GCC_VERSION >= 700 && !defined(__PGI) && !defined(__INTEL_COMPILER)
#    define FMT_FALLTHROUGH [[gnu::fallthrough]]