| 61 | } |
| 62 | |
| 63 | static inline bool isPointerType(const clang::QualType &clangQTy) { |
| 64 | return !getPointeeTy(clangQTy).isNull(); |
| 65 | } |
| 66 | |
| 67 | static inline bool isPrimitiveType(const clang::QualType &clangQTy) { |
| 68 | return (clangQTy->isIntegerType() || clangQTy->isFloatingType() || |
no test coverage detected