diff options
Diffstat (limited to 'lld/unittests/DriverTests/GnuLdDriverTest.cpp')
-rw-r--r-- | lld/unittests/DriverTests/GnuLdDriverTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/unittests/DriverTests/GnuLdDriverTest.cpp b/lld/unittests/DriverTests/GnuLdDriverTest.cpp index bc5cecbc315..89b7305b2c8 100644 --- a/lld/unittests/DriverTests/GnuLdDriverTest.cpp +++ b/lld/unittests/DriverTests/GnuLdDriverTest.cpp @@ -24,7 +24,7 @@ namespace { class GnuLdParserTest : public ParserTest<GnuLdDriver, std::unique_ptr<ELFLinkingContext>> { protected: - virtual const LinkingContext *linkingContext() { return _context.get(); } + const LinkingContext *linkingContext() override { return _context.get(); } }; TEST_F(GnuLdParserTest, Empty) { |