From: Kristof Umann Date: Tue, 2 Jul 2019 13:25:41 +0000 (+0000) Subject: Removed extra ; after function definition X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=72994c96268c075f14f8b277582ca8ea0e6c7b14;p=llvm Removed extra ; after function definition git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@364923 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/GenericIteratedDominanceFrontier.h b/include/llvm/Support/GenericIteratedDominanceFrontier.h index 975ebafa063..fcd21339ef1 100644 --- a/include/llvm/Support/GenericIteratedDominanceFrontier.h +++ b/include/llvm/Support/GenericIteratedDominanceFrontier.h @@ -124,7 +124,7 @@ ChildrenGetterTy::get( auto Children = children(N); return {Children.begin(), Children.end()}; -}; +} } // end of namespace IDFCalculatorDetail