Skip to content
Snippets Groups Projects
Commit 520520a9 authored by Max Lyon's avatar Max Lyon
Browse files

specify type of StopWathcSessionT

parent 6bf76204
Branches
No related tags found
1 merge request!14Merge latest changes to Base from ReForm
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment