Skip to content

Commit

Permalink
Don't use UDL templates on Intel C++ compiler (#742)
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaut committed May 26, 2018
1 parent 6dcc526 commit fba352a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/fmt/format.h
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
# endif
#endif

#if FMT_USE_USER_DEFINED_LITERALS && \
#if FMT_USE_USER_DEFINED_LITERALS && !defined(FMT_ICC_VERSION) && \
((FMT_GCC_VERSION >= 600 && __cplusplus >= 201402L) || \
(defined(FMT_CLANG_VERSION) && FMT_CLANG_VERSION >= 304))
# define FMT_UDL_TEMPLATE 1
Expand Down

0 comments on commit fba352a

Please sign in to comment.