]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/preprocessor/iteration/detail/iter/reverse2.hpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / boost / preprocessor / iteration / detail / iter / reverse2.hpp
index 521bd249beaa86098311c17ec42355a9fd8db048..65cbd25392e283944ed3c70edc186cc2593230aa 100644 (file)
@@ -7,8 +7,14 @@
 #  *                                                                          *
 #  ************************************************************************** */
 #
+# /* Revised by Edward Diener (2020) */
+#
 # /* See http://www.boost.org for most recent version. */
 #
+# include <boost/preprocessor/config/config.hpp>
+#
+# if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_STRICT()
+#
 # if BOOST_PP_ITERATION_FINISH_2 <= 256 && BOOST_PP_ITERATION_START_2 >= 256
 #    define BOOST_PP_ITERATION_2 256
 #    include BOOST_PP_FILENAME_2
 #    include BOOST_PP_FILENAME_2
 #    undef BOOST_PP_ITERATION_2
 # endif
+#
+# else
+#
+# include <boost/preprocessor/config/limits.hpp>
+#
+# if BOOST_PP_LIMIT_ITERATION == 256
+# include <boost/preprocessor/iteration/detail/iter/limits/reverse2_256.hpp>
+# elif BOOST_PP_LIMIT_ITERATION == 512
+# include <boost/preprocessor/iteration/detail/iter/limits/reverse2_512.hpp>
+# include <boost/preprocessor/iteration/detail/iter/limits/reverse2_256.hpp>
+# elif BOOST_PP_LIMIT_ITERATION == 1024
+# include <boost/preprocessor/iteration/detail/iter/limits/reverse2_1024.hpp>
+# include <boost/preprocessor/iteration/detail/iter/limits/reverse2_512.hpp>
+# include <boost/preprocessor/iteration/detail/iter/limits/reverse2_256.hpp>
+# else
+# error Incorrect value for the BOOST_PP_LIMIT_ITERATION limit
+# endif
+#
+# endif