From 520520a973f444f75d60213010ade73258571219 Mon Sep 17 00:00:00 2001 From: Max Lyon <max.lyon@autodesk.com> Date: Tue, 19 Jul 2022 11:52:37 +0200 Subject: [PATCH] specify type of StopWathcSessionT --- Debug/DebTime.hh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Debug/DebTime.hh b/Debug/DebTime.hh index dec65c4..d8b21db 100644 --- a/Debug/DebTime.hh +++ b/Debug/DebTime.hh @@ -65,13 +65,13 @@ auto make_stop_watch_session(Enter& _deb, const char* _sssn_name, auto __sw_sssn = make_stop_watch_session(deb, SSSN, LL, DVSR); #define DEB_time_session(SSSN, LL) PROGRESS_TICK; \ - ::Debug::StopWatchSessionT __sw_sssn(deb, SSSN, LL); + ::Debug::StopWatchSessionT<int> __sw_sssn(deb, SSSN, LL); #define DEB_time_session_def(SSSN) PROGRESS_TICK; \ - ::Debug::StopWatchSessionT __sw_sssn(deb, SSSN, 2); + ::Debug::StopWatchSessionT<int> __sw_sssn(deb, SSSN, 2); #define DEB_time_func(LL) DEB_enter_func \ - ::Debug::StopWatchSessionT __sw_func(deb, __FUNCTION__, LL); + ::Debug::StopWatchSessionT<int> __sw_func(deb, __FUNCTION__, LL); #define DEB_time_func_def DEB_time_func(2) -- GitLab