boost_has_ms_int64.ipp 606 B

1234567891011121314151617181920212223242526272829303132
  1. // (C) Copyright John Maddock 2001.
  2. // Use, modification and distribution are subject to the
  3. // Boost Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. // See http://www.boost.org/libs/config for most recent version.
  6. // MACRO: BOOST_HAS_MS_INT64
  7. // TITLE: __int64
  8. // DESCRIPTION: The platform supports Microsoft style __int64.
  9. #include <cstdlib>
  10. namespace boost_has_ms_int64{
  11. int test()
  12. {
  13. __int64 lli = 0i64;
  14. unsigned __int64 ulli = 0ui64;
  15. (void)lli;
  16. (void)ulli;
  17. return 0;
  18. }
  19. }