2
0
mirror of https://github.com/boostorg/config.git synced 2026-02-17 01:32:15 +00:00
Files
config/test/boost_no_ll_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
798 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_LONG_LONG_NUMERIC_LIMITS
// TITLE: std::numeric_limits<long long>
// DESCRIPTION: The C++ implementation does not provide the a specialisation
// for std::numeric_limits<long long>.
#include <limits>
namespace boost_no_long_long_numeric_limits{
int test()
{
if(0 == std::numeric_limits<long long>::is_specialized) return -1;
if(0 == std::numeric_limits<unsigned long long>::is_specialized) return -1;
return 0;
}
}