JitRegCache: mark derived classes as final

This commit is contained in:
Tillmann Karras
2015-08-06 10:39:43 +02:00
parent 0d3acbd9c7
commit a3476415f6
+2 -2
View File
@@ -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;