File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -80,8 +80,8 @@ class CXXTryStmt final : public Stmt,
8080 CXXTryStmt (EmptyShell Empty, unsigned numHandlers)
8181 : Stmt(CXXTryStmtClass), NumHandlers(numHandlers) { }
8282
83- Stmt *const *getStmts () const { return getTrailingObjects<Stmt *> (); }
84- Stmt **getStmts () { return getTrailingObjects<Stmt *> (); }
83+ Stmt *const *getStmts () const { return getTrailingObjects (); }
84+ Stmt **getStmts () { return getTrailingObjects (); }
8585
8686public:
8787 static CXXTryStmt *Create (const ASTContext &C, SourceLocation tryLoc,
@@ -339,9 +339,9 @@ class CoroutineBodyStmt final
339339 friend class ASTReader ;
340340 friend TrailingObjects;
341341
342- Stmt **getStoredStmts () { return getTrailingObjects<Stmt *> (); }
342+ Stmt **getStoredStmts () { return getTrailingObjects (); }
343343
344- Stmt *const *getStoredStmts () const { return getTrailingObjects<Stmt *> (); }
344+ Stmt *const *getStoredStmts () const { return getTrailingObjects (); }
345345
346346public:
347347
You can’t perform that action at this time.
0 commit comments