mirror of
https://github.com/izzy2lost/dolphin.git
synced 2026-06-19 01:16:48 -07:00
JitRegCache: mark derived classes as final
This commit is contained in:
@@ -170,7 +170,7 @@ public:
|
||||
int NumFreeRegisters();
|
||||
};
|
||||
|
||||
class GPRRegCache : public RegCache
|
||||
class GPRRegCache final : public RegCache
|
||||
{
|
||||
public:
|
||||
void StoreRegister(size_t preg, const Gen::OpArg& newLoc) override;
|
||||
@@ -183,7 +183,7 @@ public:
|
||||
};
|
||||
|
||||
|
||||
class FPURegCache : public RegCache
|
||||
class FPURegCache final : public RegCache
|
||||
{
|
||||
public:
|
||||
void StoreRegister(size_t preg, const Gen::OpArg& newLoc) override;
|
||||
|
||||
Reference in New Issue
Block a user