Clang's system_clock implementation uses microseconds resolution by
default and we fail to construct a time_point out of chrono::nanoseconds
as the library prohibits us from accidentally losing information when
casting the latter to the former. Use nanoseconds explicitly as the
resolution of the realtime timestamp.
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
/**
* @brief Real-time time_point.
*/
- using time_point_realtime = ::std::chrono::time_point<::std::chrono::system_clock>;
+ using time_point_realtime = ::std::chrono::time_point<::std::chrono::system_clock,
+ ::std::chrono::nanoseconds>;
/**
* @brief Constructor with implicit conversion from `uint64_t`.