summaryrefslogtreecommitdiff
path: root/boost/preprocessor/seq/to_list.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/preprocessor/seq/to_list.hpp')
-rw-r--r--boost/preprocessor/seq/to_list.hpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/boost/preprocessor/seq/to_list.hpp b/boost/preprocessor/seq/to_list.hpp
index fa0421bcc8..ed8948dbd4 100644
--- a/boost/preprocessor/seq/to_list.hpp
+++ b/boost/preprocessor/seq/to_list.hpp
@@ -19,7 +19,19 @@
#
# /* BOOST_PP_SEQ_TO_LIST */
#
+# if BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_MSVC()
+# include <boost/preprocessor/seq/size.hpp>
+# include <boost/preprocessor/seq/detail/to_list_msvc.hpp>
+# define BOOST_PP_SEQ_TO_LIST(seq) \
+ BOOST_PP_SEQ_DETAIL_TO_LIST_MSVC \
+ ( \
+ BOOST_PP_SEQ_TO_LIST_I(BOOST_PP_SEQ_BINARY_TRANSFORM(seq)), \
+ BOOST_PP_SEQ_SIZE(seq) \
+ ) \
+/**/
+# else
# define BOOST_PP_SEQ_TO_LIST(seq) BOOST_PP_SEQ_TO_LIST_I(BOOST_PP_SEQ_BINARY_TRANSFORM(seq))
+# endif
# define BOOST_PP_SEQ_TO_LIST_I(bseq) BOOST_PP_SEQ_TO_LIST_A bseq BOOST_PP_NIL BOOST_PP_SEQ_TO_LIST_B bseq
# define BOOST_PP_SEQ_TO_LIST_A(m, e) m(BOOST_PP_LPAREN() e BOOST_PP_COMMA() BOOST_PP_SEQ_TO_LIST_A_ID)
# define BOOST_PP_SEQ_TO_LIST_A_ID() BOOST_PP_SEQ_TO_LIST_A