From c9389b27eeedd89bf27e0387c370cf7351ffaa36 Mon Sep 17 00:00:00 2001 From: Rtur2003 Date: Sun, 7 Dec 2025 19:46:58 +0300 Subject: [PATCH] eclared detail::normalize alongside detail::diff for testability. --- src/helpers/time/Time.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/helpers/time/Time.hpp b/src/helpers/time/Time.hpp index 494d7b1ce..82f2e87a6 100644 --- a/src/helpers/time/Time.hpp +++ b/src/helpers/time/Time.hpp @@ -28,5 +28,6 @@ namespace Time { // Exposed for tests to verify borrow handling in timespec math. @Rtur2003 sec_nsec diff(const sec_nsec& newer, const sec_nsec& older); + sec_nsec normalize(const sec_nsec& raw); } };