forked from lijiext/lammps
work around issue of the Intel compiler disguising as clang on macos
This commit is contained in:
parent
c5698ac994
commit
eff159baf4
|
@ -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]]
|
||||
|
|
Loading…
Reference in New Issue