| 47 | |
| 48 | /* Wrapper for the change in the name in clang 3.5 */ |
| 49 | template <typename T> auto getResultType(T *decl) -> decltype(decl->getResultType()) |
| 50 | { return decl->getResultType(); } |
| 51 | template <typename T> auto getResultType(T *decl) -> decltype(decl->getReturnType()) |
| 52 | { return decl->getReturnType(); } |
| 53 |
no outgoing calls
no test coverage detected