test_minmax.cpp 379 B

1234567891011121314151617
  1. // test_duration.cpp ----------------------------------------------------------//
  2. // Copyright 2009 Vicente J. Botet Escriba
  3. // Distributed under the Boost Software License, Version 1.0.
  4. // See http://www.boost.org/LICENSE_1_0.txt
  5. #if !defined(__GNUC__)
  6. #define min(A,B) ((A)<(B)?(A):(B))
  7. #define max(A,B) ((A)>(B)?(A):(B))
  8. #include <boost/chrono/chrono.hpp>
  9. #endif