| 717 | bool IsProfilingEnabled() const; |
| 718 | |
| 719 | cm::optional<cmMakefileProfilingData::RAII> CreateProfilingEntry( |
| 720 | std::string const& category, std::string const& name) |
| 721 | { |
| 722 | return this->CreateProfilingEntry( |
| 723 | category, name, []() -> cm::nullopt_t { return cm::nullopt; }); |
| 724 | } |
| 725 | |
| 726 | template <typename ArgsFunc> |
| 727 | cm::optional<cmMakefileProfilingData::RAII> CreateProfilingEntry( |
no test coverage detected