diff --git a/Debug/DebTime.hh b/Debug/DebTime.hh
index dec65c481f70ad7c8e7435ca07aa81cc847712d5..d8b21dbf05f5c628138a40bb7ce12a6726a34528 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)