mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 14:19:02 +00:00
JitRegCache: mark derived classes as final
This commit is contained in:
parent
0d3acbd9c7
commit
a3476415f6
1 changed files with 2 additions and 2 deletions
|
@ -170,7 +170,7 @@ public:
|
||||||
int NumFreeRegisters();
|
int NumFreeRegisters();
|
||||||
};
|
};
|
||||||
|
|
||||||
class GPRRegCache : public RegCache
|
class GPRRegCache final : public RegCache
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
void StoreRegister(size_t preg, const Gen::OpArg& newLoc) override;
|
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:
|
public:
|
||||||
void StoreRegister(size_t preg, const Gen::OpArg& newLoc) override;
|
void StoreRegister(size_t preg, const Gen::OpArg& newLoc) override;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue