| 226 | //----------------------------------------------------------------------------- |
| 227 | |
| 228 | CXXStaticCastExpr* CastToVoidFunPtr(std::string_view name) |
| 229 | { |
| 230 | return Cast(mkDeclRefExpr(CreateFunctionDecl(name, {})), mkAnonVoidFunctionPointer()); |
| 231 | } |
| 232 | //----------------------------------------------------------------------------- |
| 233 | |
| 234 | CXXReinterpretCastExpr* ReinterpretCast(QualType toType, const Expr* toExpr, bool makePointer) |
no test coverage detected