Updated Boost libraries to version 1.49, and recompiled them with NDK r8d
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
|
||||
http://www.boost.org/
|
||||
|
||||
Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost
|
||||
Copyright (c) 2001-2011 Hartmut Kaiser. 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)
|
||||
=============================================================================*/
|
||||
@@ -27,7 +27,7 @@
|
||||
#if !defined(BOOST_WAVE_TOKEN_IDS_DEFINED)
|
||||
#define BOOST_WAVE_TOKEN_IDS_DEFINED
|
||||
|
||||
#if (defined (__FreeBSD__) || defined (__DragonFly__)) && defined (T_DIVIDE)
|
||||
#if (defined (__FreeBSD__) || defined (__DragonFly__) || defined (__OpenBSD__)) && defined (T_DIVIDE)
|
||||
#undef T_DIVIDE
|
||||
#endif
|
||||
|
||||
@@ -287,6 +287,19 @@ enum token_id {
|
||||
// import is needed to be a keyword for the C++ module Standards proposal
|
||||
T_IMPORT = TOKEN_FROM_ID(421, KeywordTokenType),
|
||||
|
||||
// C++0x keywords
|
||||
T_ALIGNAS = TOKEN_FROM_ID(422, KeywordTokenType),
|
||||
T_ALIGNOF = TOKEN_FROM_ID(423, KeywordTokenType),
|
||||
T_CHAR16_T = TOKEN_FROM_ID(424, KeywordTokenType),
|
||||
T_CHAR32_T = TOKEN_FROM_ID(425, KeywordTokenType),
|
||||
T_CONSTEXPR = TOKEN_FROM_ID(426, KeywordTokenType),
|
||||
T_DECLTYPE = TOKEN_FROM_ID(427, KeywordTokenType),
|
||||
T_NOEXCEPT = TOKEN_FROM_ID(428, KeywordTokenType),
|
||||
T_NULLPTR = TOKEN_FROM_ID(429, KeywordTokenType),
|
||||
T_STATICASSERT = TOKEN_FROM_ID(430, KeywordTokenType),
|
||||
T_THREADLOCAL = TOKEN_FROM_ID(431, KeywordTokenType),
|
||||
T_RAWSTRINGLIT = TOKEN_FROM_ID(432, StringLiteralTokenType),
|
||||
|
||||
T_LAST_TOKEN_ID,
|
||||
T_LAST_TOKEN = ID_FROM_TOKEN(T_LAST_TOKEN_ID & ~PPTokenFlag),
|
||||
|
||||
|
||||
Reference in New Issue
Block a user