2
0
mirror of https://github.com/boostorg/chrono.git synced 2026-01-28 07:02:14 +00:00
Files
chrono/test/intmax_c.cpp
Vicente J. Botet Escriba eb23446546 Boost.Chrono: change monotonic by steady
[SVN r67762]
2011-01-07 21:24:17 +00:00

31 lines
566 B
C++

// intmax_c.cpp --------------------------------------------------------------//
// Copyright 2010 Vicente J. Botet Escriba
// Distributed under the Boost Software License, Version 1.0.
// See http://www.boost.org/LICENSE_1_0.txt
#if 0
#include <boost/cstdint.hpp>
#ifdef INTMAX_C
#define BOOST_INTMAX_C(a) INTMAX_C(a)
#else
#define BOOST_INTMAX_C(a) a##LL
#endif
boost::intmax_t i = BOOST_INTMAX_C(1000000000);
int main() {
return (i);
}
#endif
#include <windows.h>
#include <algorithm>
int main() {
LONGLONG i = std::max(2,3);
return i;
}