From 41c3445f41764acffa34cfc2ab10efccd8f0cfeb Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 29 Sep 2024 10:52:48 -0400 Subject: Fix whitespace and add clang-format test --- include/raul/Semaphore.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/raul/Semaphore.hpp') diff --git a/include/raul/Semaphore.hpp b/include/raul/Semaphore.hpp index 75d0a62..c9ce024 100644 --- a/include/raul/Semaphore.hpp +++ b/include/raul/Semaphore.hpp @@ -252,7 +252,7 @@ Semaphore::timed_wait(const std::chrono::duration& wait) const auto now(chr::seconds(time.tv_sec) + chr::nanoseconds(time.tv_nsec)); const auto end(now + wait); - const chr::seconds end_sec(chr::duration_cast(end)); + const chr::seconds end_sec(chr::duration_cast(end)); const chr::nanoseconds end_nsec(end - end_sec); const timespec ts_end = {static_cast(end_sec.count()), -- cgit v1.2.1