| 20 | |
| 21 | #if PROFILE_ENABLED |
| 22 | ProfileScope::ProfileScope(std::string name) { |
| 23 | _profile_scopes.push_back(name); |
| 24 | _start = omp_get_wtime(); |
| 25 | } |
| 26 | |
| 27 | ProfileScope::ProfileScope(const char* name) : |
| 28 | ProfileScope(std::string(name)) {} |
nothing calls this directly
no outgoing calls
no test coverage detected