New upstream version 8.1.0
This commit is contained in:
17
thirdparty/source/boost_1_61_0/boost/predef/detail/_cassert.h
vendored
Normal file
17
thirdparty/source/boost_1_61_0/boost/predef/detail/_cassert.h
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
/*
|
||||
Copyright Rene Rivera 2011-2012
|
||||
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)
|
||||
*/
|
||||
|
||||
#ifndef BOOST_PREDEF_DETAIL__CASSERT_H
|
||||
#define BOOST_PREDEF_DETAIL__CASSERT_H
|
||||
|
||||
#if defined(__cplusplus)
|
||||
#include <cassert>
|
||||
#else
|
||||
#include <assert.h>
|
||||
#endif
|
||||
|
||||
#endif
|
||||
15
thirdparty/source/boost_1_61_0/boost/predef/detail/_exception.h
vendored
Normal file
15
thirdparty/source/boost_1_61_0/boost/predef/detail/_exception.h
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
/*
|
||||
Copyright Rene Rivera 2011-2012
|
||||
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)
|
||||
*/
|
||||
|
||||
#ifndef BOOST_PREDEF_DETAIL__EXCEPTION_H
|
||||
#define BOOST_PREDEF_DETAIL__EXCEPTION_H
|
||||
|
||||
#if defined(__cplusplus)
|
||||
#include <exception>
|
||||
#endif
|
||||
|
||||
#endif
|
||||
10
thirdparty/source/boost_1_61_0/boost/predef/detail/comp_detected.h
vendored
Normal file
10
thirdparty/source/boost_1_61_0/boost/predef/detail/comp_detected.h
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
/*
|
||||
Copyright Rene Rivera 2014
|
||||
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)
|
||||
*/
|
||||
|
||||
#ifndef BOOST_PREDEF_DETAIL_COMP_DETECTED
|
||||
#define BOOST_PREDEF_DETAIL_COMP_DETECTED 1
|
||||
#endif
|
||||
26
thirdparty/source/boost_1_61_0/boost/predef/detail/endian_compat.h
vendored
Normal file
26
thirdparty/source/boost_1_61_0/boost/predef/detail/endian_compat.h
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
/*
|
||||
Copyright Rene Rivera 2013
|
||||
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)
|
||||
*/
|
||||
|
||||
#ifndef BOOST_PREDEF_DETAIL_ENDIAN_COMPAT_H
|
||||
#define BOOST_PREDEF_DETAIL_ENDIAN_COMPAT_H
|
||||
|
||||
#include <boost/predef/other/endian.h>
|
||||
|
||||
#if BOOST_ENDIAN_BIG_BYTE
|
||||
# define BOOST_BIG_ENDIAN
|
||||
# define BOOST_BYTE_ORDER 4321
|
||||
#endif
|
||||
#if BOOST_ENDIAN_LITTLE_BYTE
|
||||
# define BOOST_LITTLE_ENDIAN
|
||||
# define BOOST_BYTE_ORDER 1234
|
||||
#endif
|
||||
#if BOOST_ENDIAN_LITTLE_WORD
|
||||
# define BOOST_PDP_ENDIAN
|
||||
# define BOOST_BYTE_ORDER 2134
|
||||
#endif
|
||||
|
||||
#endif
|
||||
10
thirdparty/source/boost_1_61_0/boost/predef/detail/os_detected.h
vendored
Normal file
10
thirdparty/source/boost_1_61_0/boost/predef/detail/os_detected.h
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
/*
|
||||
Copyright Rene Rivera 2013
|
||||
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)
|
||||
*/
|
||||
|
||||
#ifndef BOOST_PREDEF_DETAIL_OS_DETECTED
|
||||
#define BOOST_PREDEF_DETAIL_OS_DETECTED 1
|
||||
#endif
|
||||
10
thirdparty/source/boost_1_61_0/boost/predef/detail/platform_detected.h
vendored
Normal file
10
thirdparty/source/boost_1_61_0/boost/predef/detail/platform_detected.h
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
/*
|
||||
Copyright Rene Rivera 2014
|
||||
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)
|
||||
*/
|
||||
|
||||
#ifndef BOOST_PREDEF_DETAIL_PLAT_DETECTED
|
||||
#define BOOST_PREDEF_DETAIL_PLAT_DETECTED 1
|
||||
#endif
|
||||
17
thirdparty/source/boost_1_61_0/boost/predef/detail/test.h
vendored
Normal file
17
thirdparty/source/boost_1_61_0/boost/predef/detail/test.h
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
/*
|
||||
Copyright Rene Rivera 2011-2012
|
||||
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)
|
||||
*/
|
||||
|
||||
#ifndef BOOST_PREDEF_DETAIL_TEST_H
|
||||
#define BOOST_PREDEF_DETAIL_TEST_H
|
||||
|
||||
#if !defined(BOOST_PREDEF_INTERNAL_GENERATE_TESTS)
|
||||
|
||||
#define BOOST_PREDEF_DECLARE_TEST(x,s)
|
||||
|
||||
#endif
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user