Files
config/test/boost_no_i64_limits.ipp
John Maddock 5c7f8b9290 Added new config macros:
BOOST_NO_STD_WSTREAMBUF
	BOOST_NO_LONG_LONG_NUMERIC_LIMITS
	BOOST_NO_MS_INT64_NUMERIC_LIMITS


[SVN r14514]
2002-07-18 11:10:04 +00:00

27 lines
788 B
C++

// (C) Copyright John Maddock 2001. Permission to copy, use, modify, sell and
// distribute this software is granted provided this copyright notice appears
// in all copies. This software is provided "as is" without express or implied
// warranty, and with no claim as to its suitability for any purpose.
// MACRO: BOOST_NO_MS_INT64_NUMERIC_LIMITS
// TITLE: std::numeric_limits<__int64>
// DESCRIPTION: The C++ implementation does not provide the a specialisation
// for std::numeric_limits<__int64>.
#include <limits>
namespace boost_no_ms_int64_numeric_limits{
int test()
{
if(0 == std::numeric_limits<__int64>::is_specialized) return -1;
if(0 == std::numeric_limits<unsigned __int64>::is_specialized) return -1;
return 0;
}
}