| 1400 | return std::tie(hint, hasDeclaration) < std::tie(rhs.hint, rhs.hasDeclaration); |
| 1401 | } |
| 1402 | QByteArray toString() const |
| 1403 | { |
| 1404 | return "HintItem(" + hint.toUtf8() + ", " + (hasDeclaration ? "true" : "false") + ')'; |
| 1405 | } |
| 1406 | }; |
| 1407 | Q_DECLARE_METATYPE(HintItem) |
| 1408 | using HintItemList = QVector<HintItem>; |
no outgoing calls
no test coverage detected