| 192 | // == ProfileBlock ================================================================================ |
| 193 | |
| 194 | ProfileBlock::ProfileBlock(const std::wstring& name) : name(name) |
| 195 | { |
| 196 | Profiler::GlobalProfiler.StartProfile(name); |
| 197 | } |
| 198 | |
| 199 | ProfileBlock::~ProfileBlock() |
| 200 | { |
nothing calls this directly
no test coverage detected