summaryrefslogtreecommitdiffstats
path: root/include/raul
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2024-09-29 10:52:48 -0400
committerDavid Robillard <d@drobilla.net>2024-10-11 18:51:19 -0400
commit41c3445f41764acffa34cfc2ab10efccd8f0cfeb (patch)
treecbdf2ee0a772b38eff59255b62b54582be990330 /include/raul
parent837179db6484241cebfb64ec7cf929cc58b7a42a (diff)
downloadraul-41c3445f41764acffa34cfc2ab10efccd8f0cfeb.tar.gz
raul-41c3445f41764acffa34cfc2ab10efccd8f0cfeb.tar.bz2
raul-41c3445f41764acffa34cfc2ab10efccd8f0cfeb.zip
Fix whitespace and add clang-format test
Diffstat (limited to 'include/raul')
-rw-r--r--include/raul/Semaphore.hpp2
1 files changed, 1 insertions, 1 deletions
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<Rep, Period>& 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<chr::seconds>(end));
+ const chr::seconds end_sec(chr::duration_cast<chr::seconds>(end));
const chr::nanoseconds end_nsec(end - end_sec);
const timespec ts_end = {static_cast<time_t>(end_sec.count()),