This commit is contained in:
Tygyh 2025-04-23 17:06:28 -05:00 committed by GitHub
commit 01257fa87f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View file

@ -32,7 +32,7 @@ protected:
m_fs = IOS::HLE::Kernel{}.GetFS();
}
virtual ~FileSystemTest()
~FileSystemTest() override
{
if (UserDirectoryCreationFailed())
{

View file

@ -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();

View file

@ -45,7 +45,7 @@ public:
std::size_t DisassembleNearCode(const JitBlock&, std::ostream&) const override { return 0; }
std::size_t DisassembleFarCode(const JitBlock&, std::ostream&) const override { return 0; }
const CommonAsmRoutinesBase* GetAsmRoutines() override { return nullptr; }
virtual bool HandleFault(uintptr_t access_address, SContext* ctx) override
bool HandleFault(uintptr_t access_address, SContext* ctx) override
{
m_pre_unprotect_time = std::chrono::high_resolution_clock::now();
Common::UnWriteProtectMemory(m_data, PAGE_GRAN, /*allowExecute*/ false);