forked from OSchip/llvm-project
[PM] Remove four extraneous 'typename's that Clang (in C++11 mode) is
happy with but GCC complains about. I'm assuming both compilers are correct and these are optional in C++11 because I'm too tired to read the standard. ;] llvm-svn: 195748
This commit is contained in:
parent
16ea68e806
commit
cffb33c53f
|
@ -562,8 +562,8 @@ class ModuleAnalysisManager
|
|||
: public detail::AnalysisManagerBase<ModuleAnalysisManager, Module *> {
|
||||
friend class detail::AnalysisManagerBase<ModuleAnalysisManager, Module *>;
|
||||
typedef detail::AnalysisManagerBase<ModuleAnalysisManager, Module *> BaseT;
|
||||
typedef typename BaseT::ResultConceptT ResultConceptT;
|
||||
typedef typename BaseT::PassConceptT PassConceptT;
|
||||
typedef BaseT::ResultConceptT ResultConceptT;
|
||||
typedef BaseT::PassConceptT PassConceptT;
|
||||
|
||||
public:
|
||||
// Public methods provided by the base class.
|
||||
|
@ -596,8 +596,8 @@ class FunctionAnalysisManager
|
|||
: public detail::AnalysisManagerBase<FunctionAnalysisManager, Function *> {
|
||||
friend class detail::AnalysisManagerBase<FunctionAnalysisManager, Function *>;
|
||||
typedef detail::AnalysisManagerBase<FunctionAnalysisManager, Function *> BaseT;
|
||||
typedef typename BaseT::ResultConceptT ResultConceptT;
|
||||
typedef typename BaseT::PassConceptT PassConceptT;
|
||||
typedef BaseT::ResultConceptT ResultConceptT;
|
||||
typedef BaseT::PassConceptT PassConceptT;
|
||||
|
||||
public:
|
||||
// Most public APIs are inherited from the CRTP base class.
|
||||
|
|
Loading…
Reference in New Issue