forked from boostorg/config
Full merge from trunk at revision 41356 of entire boost-root tree.
[SVN r41369]
This commit is contained in:
@ -70,6 +70,11 @@
|
|||||||
# define BOOST_NO_SWPRINTF
|
# define BOOST_NO_SWPRINTF
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(UNDER_CE)
|
||||||
|
// Windows CE does not have a conforming signature for swprintf
|
||||||
|
# define BOOST_NO_SWPRINTF
|
||||||
|
#endif
|
||||||
|
|
||||||
#if _MSC_VER <= 1400 // 1400 == VC++ 8.0
|
#if _MSC_VER <= 1400 // 1400 == VC++ 8.0
|
||||||
# define BOOST_NO_MEMBER_TEMPLATE_FRIENDS
|
# define BOOST_NO_MEMBER_TEMPLATE_FRIENDS
|
||||||
#endif
|
#endif
|
||||||
@ -82,9 +87,10 @@
|
|||||||
# define BOOST_NO_INTRINSIC_WCHAR_T
|
# define BOOST_NO_INTRINSIC_WCHAR_T
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef _WIN32_WCE
|
#if defined(_WIN32_WCE) || defined(UNDER_CE)
|
||||||
# define BOOST_NO_THREADEX
|
# define BOOST_NO_THREADEX
|
||||||
# define BOOST_NO_GETSYSTEMTIMEASFILETIME
|
# define BOOST_NO_GETSYSTEMTIMEASFILETIME
|
||||||
|
# define BOOST_NO_SWPRINTF
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
//
|
//
|
||||||
|
@ -30,6 +30,8 @@
|
|||||||
# define BOOST_ULLT ::boost::ulong_long_type
|
# define BOOST_ULLT ::boost::ulong_long_type
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include <climits> // for CHAR_BIT
|
||||||
|
|
||||||
namespace std
|
namespace std
|
||||||
{
|
{
|
||||||
template<>
|
template<>
|
||||||
|
Reference in New Issue
Block a user