Use override rather than virtual.

llvm-svn: 228723
This commit is contained in:
Rui Ueyama 2015-02-10 18:59:37 +00:00
parent 375c5e2353
commit 4c30cb3d2f
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ protected:
class LinkerScriptTest : public testing::Test {
protected:
virtual void SetUp() {
void SetUp() override {
llvm::Triple triple(llvm::sys::getDefaultTargetTriple());
_ctx = std::move(GnuLdDriver::createELFLinkingContext(triple));
}