| 150 | // == ProfileBlock ================================================================================ |
| 151 | |
| 152 | ProfileBlock::ProfileBlock(const std::string& name) : name(name) |
| 153 | { |
| 154 | Profiler::GlobalProfiler.StartProfile(name); |
| 155 | } |
| 156 | |
| 157 | ProfileBlock::~ProfileBlock() |
| 158 | { |
nothing calls this directly
no test coverage detected