123456789101112131415161718192021222324252627282930 |
- #ifndef BOOST_MYSQL_TIME_HPP
- #define BOOST_MYSQL_TIME_HPP
- #include <boost/config.hpp>
- #include <chrono>
- namespace boost {
- namespace mysql {
- using time = std::chrono::microseconds;
- BOOST_INLINE_CONSTEXPR time min_time = -std::chrono::hours(839);
- BOOST_INLINE_CONSTEXPR time max_time = std::chrono::hours(839);
- }
- }
- #endif
|