forked from OSchip/llvm-project
[Mips] Use template class argument instead of hard-coded type name in
the class field declarations. No functional changes. llvm-svn: 227047
This commit is contained in:
parent
4834009898
commit
752df2c767
|
@ -47,7 +47,7 @@ protected:
|
|||
|
||||
private:
|
||||
MipsELFWriter<ELFT> _writeHelper;
|
||||
MipsTargetLayout<Mips32ElELFType> &_mipsTargetLayout;
|
||||
MipsTargetLayout<ELFT> &_mipsTargetLayout;
|
||||
};
|
||||
|
||||
template <class ELFT>
|
||||
|
|
|
@ -41,7 +41,7 @@ protected:
|
|||
|
||||
private:
|
||||
MipsELFWriter<ELFT> _writeHelper;
|
||||
MipsTargetLayout<Mips32ElELFType> &_mipsTargetLayout;
|
||||
MipsTargetLayout<ELFT> &_mipsTargetLayout;
|
||||
};
|
||||
|
||||
template <class ELFT>
|
||||
|
|
Loading…
Reference in New Issue