| 201 | } |
| 202 | |
| 203 | void FunctionDoc::ParseFunctionName() |
| 204 | { |
| 205 | size_t parenthesis_pos = pybind_doc_.find("("); |
| 206 | if (parenthesis_pos == std::string::npos) |
| 207 | { |
| 208 | return; |
| 209 | } |
| 210 | else |
| 211 | { |
| 212 | std::string name = pybind_doc_.substr(0, parenthesis_pos); |
| 213 | name_ = name; |
| 214 | } |
| 215 | } |
| 216 | |
| 217 | void FunctionDoc::ParseSummary() |
| 218 | { |
nothing calls this directly
no outgoing calls
no test coverage detected