| 136 | } |
| 137 | |
| 138 | const Function* FunctionContainer::getFunctionByName( |
| 139 | const std::string& name) const |
| 140 | { |
| 141 | auto fit = find(name); |
| 142 | return fit != end() ? &(*fit) : nullptr; |
| 143 | } |
| 144 | |
| 145 | /** |
| 146 | * @return Pointer to function or @c nullptr if not found. |
no outgoing calls
no test coverage detected