| 166 | } |
| 167 | |
| 168 | uint FunctionType::hash() const |
| 169 | { |
| 170 | KDevHash kdevhash(AbstractType::hash()); |
| 171 | kdevhash << d_func()->m_returnType.hash(); |
| 172 | |
| 173 | FOREACH_FUNCTION(const IndexedType &t, d_func()->m_arguments) { |
| 174 | kdevhash << t.hash(); |
| 175 | } |
| 176 | |
| 177 | return kdevhash; |
| 178 | } |
| 179 | } |
no test coverage detected