| 92 | } |
| 93 | |
| 94 | bool DebugInfoSelection::enable(std::string const& _component) |
| 95 | { |
| 96 | auto memberIt = componentMap().find(boost::trim_copy(_component)); |
| 97 | if (memberIt == componentMap().end()) |
| 98 | return false; |
| 99 | |
| 100 | this->*(memberIt->second) = true; |
| 101 | return true; |
| 102 | } |
| 103 | |
| 104 | bool DebugInfoSelection::any() const noexcept |
| 105 | { |
no test coverage detected