| 45 | inline bool operator!=(const IndexedDeclaration& rhs) const { return !operator==(rhs); } |
| 46 | |
| 47 | inline uint hash() const |
| 48 | { |
| 49 | if (isDummy()) |
| 50 | return 0; |
| 51 | return KDevHash() << m_topContext << m_declarationIndex; |
| 52 | } |
| 53 | |
| 54 | ///@warning The duchain needs to be locked when this is called |
| 55 | inline bool isValid() const |