Skip to content

Commit 07cfd1e

Browse files
committed
add ignored boost files
1 parent 03e5fc4 commit 07cfd1e

3 files changed

Lines changed: 112 additions & 0 deletions

File tree

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# /* Copyright (C) 2001
2+
# * Housemarque Oy
3+
# * http://www.housemarque.com
4+
# *
5+
# * Distributed under the Boost Software License, Version 1.0. (See
6+
# * accompanying file LICENSE_1_0.txt or copy at
7+
# * http://www.boost.org/LICENSE_1_0.txt)
8+
# */
9+
#
10+
# /* Revised by Paul Mensonides (2002) */
11+
#
12+
# /* See http://www.boost.org for most recent version. */
13+
#
14+
# ifndef BOOST_PREPROCESSOR_DEBUG_ASSERT_HPP
15+
# define BOOST_PREPROCESSOR_DEBUG_ASSERT_HPP
16+
#
17+
# include <boost/preprocessor/config/config.hpp>
18+
# include <boost/preprocessor/control/expr_iif.hpp>
19+
# include <boost/preprocessor/control/iif.hpp>
20+
# include <boost/preprocessor/logical/not.hpp>
21+
# include <boost/preprocessor/tuple/eat.hpp>
22+
#
23+
# /* BOOST_PP_ASSERT */
24+
#
25+
# if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_EDG()
26+
# define BOOST_PP_ASSERT BOOST_PP_ASSERT_D
27+
# else
28+
# define BOOST_PP_ASSERT(cond) BOOST_PP_ASSERT_D(cond)
29+
# endif
30+
#
31+
# define BOOST_PP_ASSERT_D(cond) BOOST_PP_IIF(BOOST_PP_NOT(cond), BOOST_PP_ASSERT_ERROR, BOOST_PP_TUPLE_EAT_1)(...)
32+
# define BOOST_PP_ASSERT_ERROR(x, y, z)
33+
#
34+
# /* BOOST_PP_ASSERT_MSG */
35+
#
36+
# if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_EDG()
37+
# define BOOST_PP_ASSERT_MSG BOOST_PP_ASSERT_MSG_D
38+
# else
39+
# define BOOST_PP_ASSERT_MSG(cond, msg) BOOST_PP_ASSERT_MSG_D(cond, msg)
40+
# endif
41+
#
42+
# define BOOST_PP_ASSERT_MSG_D(cond, msg) BOOST_PP_EXPR_IIF(BOOST_PP_NOT(cond), msg)
43+
#
44+
# endif
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# /* **************************************************************************
2+
# * *
3+
# * (C) Copyright Paul Mensonides 2002.
4+
# * Distributed under the Boost Software License, Version 1.0. (See
5+
# * accompanying file LICENSE_1_0.txt or copy at
6+
# * http://www.boost.org/LICENSE_1_0.txt)
7+
# * *
8+
# ************************************************************************** */
9+
#
10+
# /* See http://www.boost.org for most recent version. */
11+
#
12+
# ifndef BOOST_PREPROCESSOR_DEBUG_ERROR_HPP
13+
# define BOOST_PREPROCESSOR_DEBUG_ERROR_HPP
14+
#
15+
# include <boost/preprocessor/cat.hpp>
16+
# include <boost/preprocessor/config/config.hpp>
17+
#
18+
# /* BOOST_PP_ERROR */
19+
#
20+
# if BOOST_PP_CONFIG_ERRORS
21+
# define BOOST_PP_ERROR(code) BOOST_PP_CAT(BOOST_PP_ERROR_, code)
22+
# endif
23+
#
24+
# define BOOST_PP_ERROR_0x0000 BOOST_PP_ERROR(0x0000, BOOST_PP_INDEX_OUT_OF_BOUNDS)
25+
# define BOOST_PP_ERROR_0x0001 BOOST_PP_ERROR(0x0001, BOOST_PP_WHILE_OVERFLOW)
26+
# define BOOST_PP_ERROR_0x0002 BOOST_PP_ERROR(0x0002, BOOST_PP_FOR_OVERFLOW)
27+
# define BOOST_PP_ERROR_0x0003 BOOST_PP_ERROR(0x0003, BOOST_PP_REPEAT_OVERFLOW)
28+
# define BOOST_PP_ERROR_0x0004 BOOST_PP_ERROR(0x0004, BOOST_PP_LIST_FOLD_OVERFLOW)
29+
# define BOOST_PP_ERROR_0x0005 BOOST_PP_ERROR(0x0005, BOOST_PP_SEQ_FOLD_OVERFLOW)
30+
# define BOOST_PP_ERROR_0x0006 BOOST_PP_ERROR(0x0006, BOOST_PP_ARITHMETIC_OVERFLOW)
31+
# define BOOST_PP_ERROR_0x0007 BOOST_PP_ERROR(0x0007, BOOST_PP_DIVISION_BY_ZERO)
32+
#
33+
# endif
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# /* **************************************************************************
2+
# * *
3+
# * (C) Copyright Paul Mensonides 2002.
4+
# * Distributed under the Boost Software License, Version 1.0. (See
5+
# * accompanying file LICENSE_1_0.txt or copy at
6+
# * http://www.boost.org/LICENSE_1_0.txt)
7+
# * *
8+
# ************************************************************************** */
9+
#
10+
# /* See http://www.boost.org for most recent version. */
11+
#
12+
# ifndef BOOST_PREPROCESSOR_DEBUG_LINE_HPP
13+
# define BOOST_PREPROCESSOR_DEBUG_LINE_HPP
14+
#
15+
# include <boost/preprocessor/cat.hpp>
16+
# include <boost/preprocessor/config/config.hpp>
17+
# include <boost/preprocessor/iteration/iterate.hpp>
18+
# include <boost/preprocessor/stringize.hpp>
19+
#
20+
# /* BOOST_PP_LINE */
21+
#
22+
# if BOOST_PP_CONFIG_EXTENDED_LINE_INFO
23+
# define BOOST_PP_LINE(line, file) line BOOST_PP_CAT(BOOST_PP_LINE_, BOOST_PP_IS_ITERATING)(file)
24+
# define BOOST_PP_LINE_BOOST_PP_IS_ITERATING(file) #file
25+
# define BOOST_PP_LINE_1(file) BOOST_PP_STRINGIZE(file BOOST_PP_CAT(BOOST_PP_LINE_I_, BOOST_PP_ITERATION_DEPTH())())
26+
# define BOOST_PP_LINE_I_1() [BOOST_PP_FRAME_ITERATION(1)]
27+
# define BOOST_PP_LINE_I_2() BOOST_PP_LINE_I_1()[BOOST_PP_FRAME_ITERATION(2)]
28+
# define BOOST_PP_LINE_I_3() BOOST_PP_LINE_I_2()[BOOST_PP_FRAME_ITERATION(3)]
29+
# define BOOST_PP_LINE_I_4() BOOST_PP_LINE_I_3()[BOOST_PP_FRAME_ITERATION(4)]
30+
# define BOOST_PP_LINE_I_5() BOOST_PP_LINE_I_4()[BOOST_PP_FRAME_ITERATION(5)]
31+
# else
32+
# define BOOST_PP_LINE(line, file) line __FILE__
33+
# endif
34+
#
35+
# endif

0 commit comments

Comments
 (0)