| 7 | { |
| 8 | |
| 9 | void toString(const CXString& str, std::string& output) |
| 10 | { |
| 11 | auto cstr = clang_getCString(str); |
| 12 | |
| 13 | output = cstr; |
| 14 | |
| 15 | clang_disposeString(str); |
| 16 | } |
| 17 | |
| 18 | std::string getQualifiedName(const CursorType& type) { return type.GetDisplayName(); } |
| 19 |
no outgoing calls
no test coverage detected