| 858 | //BEGIN setDeclType |
| 859 | template<CXCursorKind CK> |
| 860 | void setDeclType(Declaration *decl, typename IdType<CK>::Type *type) |
| 861 | { |
| 862 | setDeclType<CK>(decl, static_cast<IdentifiedType*>(type)); |
| 863 | setDeclType<CK>(decl, static_cast<AbstractType*>(type)); |
| 864 | } |
| 865 | |
| 866 | template<CXCursorKind CK> |
| 867 | void setDeclType(Declaration *decl, IdentifiedType *type) |
nothing calls this directly
no test coverage detected