diff options
Diffstat (limited to '3rdParty/Boost/boost/preprocessor/array')
| m--------- | 3rdParty/Boost | 0 | ||||
| -rw-r--r-- | 3rdParty/Boost/boost/preprocessor/array/data.hpp | 28 | ||||
| -rw-r--r-- | 3rdParty/Boost/boost/preprocessor/array/elem.hpp | 29 | ||||
| -rw-r--r-- | 3rdParty/Boost/boost/preprocessor/array/size.hpp | 28 | 
4 files changed, 0 insertions, 85 deletions
| diff --git a/3rdParty/Boost b/3rdParty/Boost new file mode 160000 +Subproject 3bbdbc8cf1996f23d9a366da8bac0f97be6ad79 diff --git a/3rdParty/Boost/boost/preprocessor/array/data.hpp b/3rdParty/Boost/boost/preprocessor/array/data.hpp deleted file mode 100644 index 10c926a..0000000 --- a/3rdParty/Boost/boost/preprocessor/array/data.hpp +++ /dev/null @@ -1,28 +0,0 @@ -# /* ************************************************************************** -#  *                                                                          * -#  *     (C) Copyright Paul Mensonides 2002. -#  *     Distributed under the Boost Software License, Version 1.0. (See -#  *     accompanying file LICENSE_1_0.txt or copy at -#  *     http://www.boost.org/LICENSE_1_0.txt) -#  *                                                                          * -#  ************************************************************************** */ -# -# /* See http://www.boost.org for most recent version. */ -# -# ifndef BOOST_PREPROCESSOR_ARRAY_DATA_HPP -# define BOOST_PREPROCESSOR_ARRAY_DATA_HPP -# -# include <boost/preprocessor/config/config.hpp> -# include <boost/preprocessor/tuple/elem.hpp> -# -# /* BOOST_PP_ARRAY_DATA */ -# -# if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_EDG() -#    define BOOST_PP_ARRAY_DATA(array) BOOST_PP_TUPLE_ELEM(2, 1, array) -# else -#    define BOOST_PP_ARRAY_DATA(array) BOOST_PP_ARRAY_DATA_I(array) -#    define BOOST_PP_ARRAY_DATA_I(array) BOOST_PP_ARRAY_DATA_II array -#    define BOOST_PP_ARRAY_DATA_II(size, data) data -# endif -# -# endif diff --git a/3rdParty/Boost/boost/preprocessor/array/elem.hpp b/3rdParty/Boost/boost/preprocessor/array/elem.hpp deleted file mode 100644 index 105ba24..0000000 --- a/3rdParty/Boost/boost/preprocessor/array/elem.hpp +++ /dev/null @@ -1,29 +0,0 @@ -# /* ************************************************************************** -#  *                                                                          * -#  *     (C) Copyright Paul Mensonides 2002. -#  *     Distributed under the Boost Software License, Version 1.0. (See -#  *     accompanying file LICENSE_1_0.txt or copy at -#  *     http://www.boost.org/LICENSE_1_0.txt) -#  *                                                                          * -#  ************************************************************************** */ -# -# /* See http://www.boost.org for most recent version. */ -# -# ifndef BOOST_PREPROCESSOR_ARRAY_ELEM_HPP -# define BOOST_PREPROCESSOR_ARRAY_ELEM_HPP -# -# include <boost/preprocessor/array/data.hpp> -# include <boost/preprocessor/array/size.hpp> -# include <boost/preprocessor/config/config.hpp> -# include <boost/preprocessor/tuple/elem.hpp> -# -# /* BOOST_PP_ARRAY_ELEM */ -# -# if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_EDG() -#    define BOOST_PP_ARRAY_ELEM(i, array) BOOST_PP_TUPLE_ELEM(BOOST_PP_ARRAY_SIZE(array), i, BOOST_PP_ARRAY_DATA(array)) -# else -#    define BOOST_PP_ARRAY_ELEM(i, array) BOOST_PP_ARRAY_ELEM_I(i, array) -#    define BOOST_PP_ARRAY_ELEM_I(i, array) BOOST_PP_TUPLE_ELEM(BOOST_PP_ARRAY_SIZE(array), i, BOOST_PP_ARRAY_DATA(array)) -# endif -# -# endif diff --git a/3rdParty/Boost/boost/preprocessor/array/size.hpp b/3rdParty/Boost/boost/preprocessor/array/size.hpp deleted file mode 100644 index 3f370ee..0000000 --- a/3rdParty/Boost/boost/preprocessor/array/size.hpp +++ /dev/null @@ -1,28 +0,0 @@ -# /* ************************************************************************** -#  *                                                                          * -#  *     (C) Copyright Paul Mensonides 2002. -#  *     Distributed under the Boost Software License, Version 1.0. (See -#  *     accompanying file LICENSE_1_0.txt or copy at -#  *     http://www.boost.org/LICENSE_1_0.txt) -#  *                                                                          * -#  ************************************************************************** */ -# -# /* See http://www.boost.org for most recent version. */ -# -# ifndef BOOST_PREPROCESSOR_ARRAY_SIZE_HPP -# define BOOST_PREPROCESSOR_ARRAY_SIZE_HPP -# -# include <boost/preprocessor/config/config.hpp> -# include <boost/preprocessor/tuple/elem.hpp> -# -# /* BOOST_PP_ARRAY_SIZE */ -# -# if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_EDG() -#    define BOOST_PP_ARRAY_SIZE(array) BOOST_PP_TUPLE_ELEM(2, 0, array) -# else -#    define BOOST_PP_ARRAY_SIZE(array) BOOST_PP_ARRAY_SIZE_I(array) -#    define BOOST_PP_ARRAY_SIZE_I(array) BOOST_PP_ARRAY_SIZE_II array -#    define BOOST_PP_ARRAY_SIZE_II(size, data) size -# endif -# -# endif | 
 Swift
 Swift