| 169 | //----------------------------------------------------------------------------- |
| 170 | |
| 171 | UnaryExprOrTypeTraitExpr* Sizeof(QualType toType) |
| 172 | { |
| 173 | const auto& ctx = GetGlobalAST(); |
| 174 | return new(ctx) UnaryExprOrTypeTraitExpr(UETT_SizeOf, ctx.getTrivialTypeSourceInfo(toType), toType, {}, {}); |
| 175 | } |
| 176 | //----------------------------------------------------------------------------- |
| 177 | |
| 178 | CXXStaticCastExpr* Cast(const Expr* toExpr, QualType toType) |
no outgoing calls
no test coverage detected