Add missing declarations of explicit member specializations.

This should fix the build under -Wundefined-func-template and certain
versions of GCC.

llvm-svn: 365377
This commit is contained in:
Richard Smith 2019-07-08 19:45:46 +00:00
parent 5de4692cc7
commit 4ce376cedc

View File

@ -184,6 +184,9 @@ private:
using CFGDomTree = CFGDominatorTreeImpl</*IsPostDom*/ false>;
using CFGPostDomTree = CFGDominatorTreeImpl</*IsPostDom*/ true>;
template<> void CFGDominatorTreeImpl<true>::anchor();
template<> void CFGDominatorTreeImpl<false>::anchor();
} // end of namespace clang
namespace llvm {