summaryrefslogtreecommitdiff
path: root/boost/preprocessor/cat.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/preprocessor/cat.hpp')
-rw-r--r--boost/preprocessor/cat.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/boost/preprocessor/cat.hpp b/boost/preprocessor/cat.hpp
index 5e52850d48..52a389270c 100644
--- a/boost/preprocessor/cat.hpp
+++ b/boost/preprocessor/cat.hpp
@@ -25,7 +25,7 @@
# define BOOST_PP_CAT_OO(par) BOOST_PP_CAT_I ## par
# endif
#
-# if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_MSVC()
+# if (~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_MSVC()) || (defined(__INTEL_COMPILER) && __INTEL_COMPILER >= 1700)
# define BOOST_PP_CAT_I(a, b) a ## b
# else
# define BOOST_PP_CAT_I(a, b) BOOST_PP_CAT_II(~, a ## b)