From: Kristof Umann Date: Tue, 2 Jul 2019 12:40:29 +0000 (+0000) Subject: Attempt to fix buildbot failures with MSVC X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1645ca693ca4302c1443dd193ca9b744ca42b718;p=llvm Attempt to fix buildbot failures with MSVC git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@364914 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Analysis/IteratedDominanceFrontier.h b/include/llvm/Analysis/IteratedDominanceFrontier.h index 90e096f8c71..1fa1db53786 100644 --- a/include/llvm/Analysis/IteratedDominanceFrontier.h +++ b/include/llvm/Analysis/IteratedDominanceFrontier.h @@ -62,12 +62,9 @@ using ReverseIDFCalculator = IDFCalculator; namespace IDFCalculatorDetail { template -using BBChildrenGetterTy = ChildrenGetterTy; - -template -typename BBChildrenGetterTy::ChildrenTy -BBChildrenGetterTy::get( - const BBChildrenGetterTy::NodeRef &N) { +typename ChildrenGetterTy::ChildrenTy +ChildrenGetterTy::get( + const ChildrenGetterTy::NodeRef &N) { using OrderedNodeTy = typename IDFCalculatorBase::OrderedNodeTy;