diff options
| author | Simon Atanasyan <simon@atanasyan.com> | 2014-03-09 13:05:03 +0000 |
|---|---|---|
| committer | Simon Atanasyan <simon@atanasyan.com> | 2014-03-09 13:05:03 +0000 |
| commit | 16c425e9853fe90ac90bd83a58925739a4ff750d (patch) | |
| tree | f10476d40e4e148c388641920053b8196c9a0ad5 | |
| parent | 8801c451102a3e4101f984fe35986891d0aab641 (diff) | |
| download | bcm5719-llvm-16c425e9853fe90ac90bd83a58925739a4ff750d.tar.gz bcm5719-llvm-16c425e9853fe90ac90bd83a58925739a4ff750d.zip | |
[Mips] Mark class by 'final' keyword.
llvm-svn: 203401
| -rw-r--r-- | lld/lib/ReaderWriter/ELF/Mips/MipsTargetHandler.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lld/lib/ReaderWriter/ELF/Mips/MipsTargetHandler.h b/lld/lib/ReaderWriter/ELF/Mips/MipsTargetHandler.h index 92ae0a369ad..e3fee902e92 100644 --- a/lld/lib/ReaderWriter/ELF/Mips/MipsTargetHandler.h +++ b/lld/lib/ReaderWriter/ELF/Mips/MipsTargetHandler.h @@ -60,15 +60,15 @@ private: }; /// \brief Mips Runtime file. -template <class ELFType> class MipsRuntimeFile : public CRuntimeFile<ELFType> { +template <class ELFType> +class MipsRuntimeFile final : public CRuntimeFile<ELFType> { public: MipsRuntimeFile(const MipsLinkingContext &context) : CRuntimeFile<ELFType>(context, "Mips runtime file") {} }; /// \brief TargetHandler for Mips -class MipsTargetHandler final - : public DefaultTargetHandler<Mips32ElELFType> { +class MipsTargetHandler final : public DefaultTargetHandler<Mips32ElELFType> { public: MipsTargetHandler(MipsLinkingContext &context); |

