@@ -3980,11 +3980,11 @@ class AssumptionExpr final
39803980 friend class ASTStmtWriter ;
39813981
39823982 Expr **getTrailingExprs () {
3983- return const_cast <Expr **>(getTrailingObjects<Expr *> ());
3983+ return const_cast <Expr **>(getTrailingObjects ());
39843984 }
39853985
39863986 Expr *const *getTrailingExprs () const {
3987- return getTrailingObjects<Expr *> ();
3987+ return getTrailingObjects ();
39883988 }
39893989
39903990 AssumptionExpr (EmptyShell Empty, unsigned NumExprs)
@@ -4325,10 +4325,10 @@ class PredefinedBoundsCheckExpr final
43254325 }
43264326
43274327 Stmt **getTrailingStmts () {
4328- return const_cast <Stmt **>(getTrailingObjects<Stmt *> ());
4328+ return const_cast <Stmt **>(getTrailingObjects ());
43294329 }
43304330
4331- Stmt *const *getTrailingStmts () const { return getTrailingObjects<Stmt *> (); }
4331+ Stmt *const *getTrailingStmts () const { return getTrailingObjects (); }
43324332
43334333 Expr **getSubExprs () { return reinterpret_cast <Expr **>(getTrailingStmts ()); }
43344334
@@ -4474,11 +4474,11 @@ class BoundsCheckExpr final :
44744474 }
44754475
44764476 Stmt **getTrailingStmts () {
4477- return const_cast <Stmt **>(getTrailingObjects<Stmt *> ());
4477+ return const_cast <Stmt **>(getTrailingObjects ());
44784478 }
44794479
44804480 Stmt *const *getTrailingStmts () const {
4481- return getTrailingObjects<Stmt *> ();
4481+ return getTrailingObjects ();
44824482 }
44834483
44844484 Expr **getSubExprs () {
@@ -4589,11 +4589,11 @@ class MaterializeSequenceExpr final :
45894589 }
45904590
45914591 Expr **getSubExprs () {
4592- return getTrailingObjects<Expr *> ();
4592+ return getTrailingObjects ();
45934593 }
45944594
45954595 Expr *const *getSubExprs () const {
4596- return getTrailingObjects<Expr *> ();
4596+ return getTrailingObjects ();
45974597 }
45984598
45994599 friend class ASTStmtReader ;
0 commit comments