X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Fdebug%2Fprofiler.cpp;fp=source%2Fdebug%2Fprofiler.cpp;h=65cc71ced0876d6863f7613d6f99561e6a82244b;hp=c82558b01f6e119720e7d119d5c2cf6d2ef36a65;hb=122846f0881673770d88eff7d925ecf25c01b62e;hpb=b116e161e377da0e4e52f07745ecb2d22f962ae9 diff --git a/source/debug/profiler.cpp b/source/debug/profiler.cpp index c82558b..65cc71c 100644 --- a/source/debug/profiler.cpp +++ b/source/debug/profiler.cpp @@ -7,11 +7,6 @@ using namespace std; namespace Msp { namespace Debug { -Profiler::Profiler(): - period(0), - inner(0) -{ } - void Profiler::set_period(unsigned p) { if(p==period) @@ -96,13 +91,5 @@ const Profiler::ScopeInfo &Profiler::get_scope(const string &sn) const return get_item(scopes, sn); } - -Profiler::ScopeInfo::ScopeInfo(): - calls(0), - calls_per_sec(0), - hist_pos(0), - hist_full(false) -{ } - } // namespace Debug } // namespace Msp