mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 04:08:55 +00:00
UnitTests: Remove redundant virtual
specifier
This commit is contained in:
parent
89873d6238
commit
d5314cbf48
3 changed files with 4 additions and 4 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue