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,
80
80
CXXTryStmt (EmptyShell Empty, unsigned numHandlers)
81
81
: Stmt(CXXTryStmtClass), NumHandlers(numHandlers) { }
82
82
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 (); }
85
85
86
86
public:
87
87
static CXXTryStmt *Create (const ASTContext &C, SourceLocation tryLoc,
@@ -339,9 +339,9 @@ class CoroutineBodyStmt final
339
339
friend class ASTReader ;
340
340
friend TrailingObjects;
341
341
342
- Stmt **getStoredStmts () { return getTrailingObjects<Stmt *> (); }
342
+ Stmt **getStoredStmts () { return getTrailingObjects (); }
343
343
344
- Stmt *const *getStoredStmts () const { return getTrailingObjects<Stmt *> (); }
344
+ Stmt *const *getStoredStmts () const { return getTrailingObjects (); }
345
345
346
346
public:
347
347
You can’t perform that action at this time.
0 commit comments