We should store event timestamps in C++ bindings in
::std::chrono::time_point objects rather than in
::std::chrono::duration. Add a task for that to TODO.
Suggested-by: Helmut Grohne <helmut.grohne@intenta.de>
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
line's direction, active-state etc.), we should probably store the line objects
within the chip instead of creating them everytime get_line() is called and
several more.
+
+* use ::std::chrono::time_point instead of ::std::chrono:duration in C++
+ bindings
+
+Duration is a time interval so it's not the best candidate for storing
+timestamps. Switch to using time_point where applicable.