mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
UnitTests: Remove redundant virtual
specifier
This commit is contained in:
@ -56,12 +56,12 @@ TEST(IsMMIOAddress, SpecialAddresses)
|
||||
class MappingTest : public testing::Test
|
||||
{
|
||||
protected:
|
||||
virtual void SetUp() override
|
||||
void SetUp() override
|
||||
{
|
||||
m_system = &Core::System::GetInstance();
|
||||
m_mapping = std::make_unique<MMIO::Mapping>();
|
||||
}
|
||||
virtual void TearDown() override
|
||||
void TearDown() override
|
||||
{
|
||||
m_system = nullptr;
|
||||
m_mapping.reset();
|
||||
|
Reference in New Issue
Block a user