renderer_opengl/gl_global_cache: Append missing override specifiers

Two of the functions here are overridden functions, so we can append
these specifiers to make it explicit.
This commit is contained in:
Lioncash 2019-03-11 12:02:28 -04:00
parent 0aa824b12f
commit 1070c020db

View File

@ -30,12 +30,12 @@ public:
explicit CachedGlobalRegion(VAddr addr, u32 size); explicit CachedGlobalRegion(VAddr addr, u32 size);
/// Gets the address of the shader in guest memory, required for cache management /// Gets the address of the shader in guest memory, required for cache management
VAddr GetAddr() const { VAddr GetAddr() const override {
return addr; return addr;
} }
/// Gets the size of the shader in guest memory, required for cache management /// Gets the size of the shader in guest memory, required for cache management
std::size_t GetSizeInBytes() const { std::size_t GetSizeInBytes() const override {
return size; return size;
} }