1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 12:12:47 +01:00

ObjectTransformLayerTest.cpp: Rework r258633. [-Winconsistent-missing-override]

Sorry for the noise.

llvm-svn: 258635
This commit is contained in:
NAKAMURA Takumi 2016-01-23 20:48:50 +00:00
parent bf43da04ea
commit 297ef6c65b

View File

@ -301,7 +301,7 @@ TEST(ObjectTransformLayerTest, Main) {
}
void registerEHFrames(uint8_t *, uint64_t, size_t) override {}
void deregisterEHFrames(uint8_t *, uint64_t, size_t) override {}
virtual bool finalizeMemory(std::string *) { return false; }
bool finalizeMemory(std::string *) override { return false; }
};
// Construct the jit layers.