001 #
002
003
004
005
006
007
008
009 #
010 #
011 #
012 #
013 #
014 # ifndef BOOST_PREPROCESSOR_ARITHMETIC_MOD_HPP
015 # define BOOST_PREPROCESSOR_ARITHMETIC_MOD_HPP
016 #
017 # include <boost/preprocessor/arithmetic/detail/div_base.hpp>
018 # include <boost/preprocessor/config/config.hpp>
019 # include <boost/preprocessor/tuple/elem.hpp>
020 #
021 #
022 #
023 # if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_EDG()
024 # define BOOST_PP_MOD(x, y) BOOST_PP_TUPLE_ELEM(3, 1, BOOST_PP_DIV_BASE(x, y))
025 # else
026 # define BOOST_PP_MOD(x, y) BOOST_PP_MOD_I(x, y)
027 # define BOOST_PP_MOD_I(x, y) BOOST_PP_TUPLE_ELEM(3, 1, BOOST_PP_DIV_BASE(x, y))
028 # endif
029 #
030 #
031 #
032 # if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_EDG()
033 # define BOOST_PP_MOD_D(d, x, y) BOOST_PP_TUPLE_ELEM(3, 1, BOOST_PP_DIV_BASE_D(d, x, y))
034 # else
035 # define BOOST_PP_MOD_D(d, x, y) BOOST_PP_MOD_D_I(d, x, y)
036 # define BOOST_PP_MOD_D_I(d, x, y) BOOST_PP_TUPLE_ELEM(3, 1, BOOST_PP_DIV_BASE_D(d, x, y))
037 # endif
038 #
039 # endif
| Due to the LXR bug, the updates fail sometimes to remove references to deleted files. The Saturday's full rebuilds fix these problems |
|
This page was automatically generated by the
LXR engine.
|
|