| 65 | } |
| 66 | |
| 67 | static inline bool isPrimitiveType(const clang::QualType &clangQTy) { |
| 68 | return (clangQTy->isIntegerType() || clangQTy->isFloatingType() || |
| 69 | clangQTy->isBuiltinType()); |
| 70 | } |
| 71 | |
| 72 | std::vector<clang::CXXMethodDecl *> findCXXMethodDeclFromCXXRecordDecls( |
| 73 | const clang::CXXRecordDecl *CurCXXRecordDecl, std::string MethodName); |
no test coverage detected