time_point.pass.cpp 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. //===----------------------------------------------------------------------===//
  2. //
  3. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  4. // See https://llvm.org/LICENSE.txt for license information.
  5. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  6. //
  7. //===----------------------------------------------------------------------===//
  8. // <chrono>
  9. // template <class Clock, class Duration1, class Duration2>
  10. // struct common_type<chrono::time_point<Clock, Duration1>, chrono::time_point<Clock, Duration2>>
  11. // {
  12. // typedef chrono::time_point<Clock, typename common_type<Duration1, Duration2>::type> type;
  13. // };
  14. #include <chrono>
  15. #include "test_macros.h"
  16. template <class D1, class D2, class De>
  17. void
  18. test()
  19. {
  20. typedef std::chrono::system_clock C;
  21. typedef std::chrono::time_point<C, D1> T1;
  22. typedef std::chrono::time_point<C, D2> T2;
  23. typedef std::chrono::time_point<C, De> Te;
  24. typedef typename std::common_type<T1, T2>::type Tc;
  25. static_assert((std::is_same<Tc, Te>::value), "");
  26. }
  27. int main(int, char**)
  28. {
  29. test<std::chrono::duration<int, std::ratio<1, 100> >,
  30. std::chrono::duration<long, std::ratio<1, 1000> >,
  31. std::chrono::duration<long, std::ratio<1, 1000> > >();
  32. test<std::chrono::duration<long, std::ratio<1, 100> >,
  33. std::chrono::duration<int, std::ratio<1, 1000> >,
  34. std::chrono::duration<long, std::ratio<1, 1000> > >();
  35. test<std::chrono::duration<char, std::ratio<1, 30> >,
  36. std::chrono::duration<short, std::ratio<1, 1000> >,
  37. std::chrono::duration<int, std::ratio<1, 3000> > >();
  38. test<std::chrono::duration<double, std::ratio<21, 1> >,
  39. std::chrono::duration<short, std::ratio<15, 1> >,
  40. std::chrono::duration<double, std::ratio<3, 1> > >();
  41. return 0;
  42. }