17 lines
196 B
C++
17 lines
196 B
C++
#include "profiler.hpp"
|
|
|
|
using std::string;
|
|
|
|
Profiler profiler;
|
|
|
|
void Profiler::record_function_call(char *function_name)
|
|
{
|
|
calls[function_name]++;
|
|
}
|
|
|
|
void Profiler::clear()
|
|
{
|
|
calls.clear();
|
|
}
|
|
|