diff options
| author | Lioncash <mathew1800@gmail.com> | 2018-03-24 15:59:20 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2018-03-24 16:17:39 -0400 |
| commit | 397b3fb976ec4c7f4b6e61dc1e70102c239032ef (patch) | |
| tree | be69948b00eb0f3761635ec53db2f93bd9483433 /Source/UnitTests/Core/PageFaultTest.cpp | |
| parent | c738ddc4aa144b61db38ee8df74aabc26a411c88 (diff) | |
CPUCoreBase: Make the GetName() member function const qualified
This function should have no need to modify internal class state.
Diffstat (limited to 'Source/UnitTests/Core/PageFaultTest.cpp')
| -rw-r--r-- | Source/UnitTests/Core/PageFaultTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/UnitTests/Core/PageFaultTest.cpp b/Source/UnitTests/Core/PageFaultTest.cpp index 5f856b2568..f804a76883 100644 --- a/Source/UnitTests/Core/PageFaultTest.cpp +++ b/Source/UnitTests/Core/PageFaultTest.cpp @@ -30,7 +30,7 @@ public: void ClearCache() override {} void Run() override {} void SingleStep() override {} - const char* GetName() override { return nullptr; } + const char* GetName() const override { return nullptr; } // JitBase methods JitBaseBlockCache* GetBlockCache() override { return nullptr; } void Jit(u32 em_address) override {} |
