diff mbox series

[libgpiod] bindings: cxx: fix building gpiod::timestamp with clang

Message ID 20230210130401.1181599-1-brgl@bgdev.pl
State New
Headers show
Series [libgpiod] bindings: cxx: fix building gpiod::timestamp with clang | expand

Commit Message

Bartosz Golaszewski Feb. 10, 2023, 1:04 p.m. UTC
From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>

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>
---
 bindings/cxx/gpiodcxx/timestamp.hpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/bindings/cxx/gpiodcxx/timestamp.hpp b/bindings/cxx/gpiodcxx/timestamp.hpp
index 2eaadd2..5efeb4c 100644
--- a/bindings/cxx/gpiodcxx/timestamp.hpp
+++ b/bindings/cxx/gpiodcxx/timestamp.hpp
@@ -38,7 +38,8 @@  public:
 	/**
 	 * @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`.