File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -8674,11 +8674,11 @@ namespace {
8674
8674
8675
8675
ast_type_traits::DynTypedNode
8676
8676
getSingleDynTypedNodeFromParentMap (ASTContext::ParentMap::mapped_type U) {
8677
- if (const auto *D = U.template dyn_cast <const Decl *>())
8677
+ if (const auto *D = U.dyn_cast <const Decl *>())
8678
8678
return ast_type_traits::DynTypedNode::create (*D);
8679
- if (const auto *S = U.template dyn_cast <const Stmt *>())
8679
+ if (const auto *S = U.dyn_cast <const Stmt *>())
8680
8680
return ast_type_traits::DynTypedNode::create (*S);
8681
- return *U.template get <ast_type_traits::DynTypedNode *>();
8681
+ return *U.get <ast_type_traits::DynTypedNode *>();
8682
8682
}
8683
8683
8684
8684
// / \brief A \c RecursiveASTVisitor that builds a map from nodes to their
You can’t perform that action at this time.
0 commit comments