| 204 | // == CPUProfileBlock ============================================================================= |
| 205 | |
| 206 | CPUProfileBlock::CPUProfileBlock(const std::wstring& name) : name(name) |
| 207 | { |
| 208 | Profiler::GlobalProfiler.StartCPUProfile(name); |
| 209 | } |
| 210 | |
| 211 | CPUProfileBlock::~CPUProfileBlock() |
| 212 | { |
nothing calls this directly
no test coverage detected