GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: src/rbprm-profiler.cc Lines: 0 3 0.0 %
Date: 2024-02-02 12:21:48 Branches: 0 8 0.0 %

Line Branch Exec Source
1
2
3
#include "hpp/rbprm/rbprm-profiler.hh"
4
5
using std::map;
6
using std::ostringstream;
7
using std::string;
8
9
RbPrmProfiler& getRbPrmProfiler() {
10
  static RbPrmProfiler s(REAL_TIME);  // alternatives are CPU_TIME and REAL_TIME
11
  return s;
12
}