]> git.tdb.fi Git - libs/core.git/commitdiff
Use the get_item function in Profiler::get_scope
authorMikko Rasa <tdb@tdb.fi>
Thu, 9 Jun 2011 13:03:37 +0000 (16:03 +0300)
committerMikko Rasa <tdb@tdb.fi>
Thu, 9 Jun 2011 13:03:37 +0000 (16:03 +0300)
source/debug/profiler.cpp

index 0167ff99e7be1aa6bd4fb81427023d9d8868d67c..e3d98408d6d2244c47da824c8cf0fde3c0998c89 100644 (file)
@@ -1,4 +1,4 @@
-#include <msp/core/except.h>
+#include <msp/core/maputils.h>
 #include <msp/time/units.h>
 #include "profiler.h"
 
@@ -72,11 +72,7 @@ void Profiler::record(const string &scope_name, const string &parent, const Time
 
 const Profiler::ScopeInfo &Profiler::scope(const string &sn) const
 {
-       map<string, ScopeInfo>::const_iterator i = scopes.find(sn);
-       if(i==scopes.end())
-               throw KeyError("Unknown scope");
-
-       return i->second;
+       return get_item(scopes, sn);
 }