2
0
mirror of https://github.com/boostorg/config.git synced 2026-01-27 06:42:20 +00:00
Files
config/test/boost_has_long_long.ipp
2001-10-16 11:40:19 +00:00

29 lines
615 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_HAS_LONG_LONG
// TITLE: long long
// DESCRIPTION: The platform supports long long.
#include <cstdlib>
namespace boost_has_long_long{
int test()
{
long long int lli = 0LL;
unsigned long long int ulli = 0uLL;
(void)lli;
(void)ulli;
return 0;
}
}