Mercurial > hg > svcore
diff base/Profiler.cpp @ 1216:c811991a5efa msvc2015_64
MSVC build fixes
author | Chris Cannam |
---|---|
date | Tue, 18 Oct 2016 14:03:55 +0100 |
parents | 16dc7307d43a |
children | 48e9f538e6e9 |
line wrap: on
line diff
--- a/base/Profiler.cpp Tue Sep 20 09:16:13 2016 +0100 +++ b/base/Profiler.cpp Tue Oct 18 14:03:55 2016 +0100 @@ -47,15 +47,11 @@ dump(); } +#ifndef NO_TIMING void Profiles::accumulate( -#ifndef NO_TIMING const char* id, clock_t time, RealTime rt -#else - const char*, clock_t, RealTime -#endif ) { -#ifndef NO_TIMING ProfilePair &pair(m_profiles[id]); ++pair.first; pair.second.first += time; @@ -72,8 +68,8 @@ if (rt > worstPair.second) { worstPair.second = rt; } +} #endif -} void Profiles::dump() const {