summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2017-09-02 17:27:16 -0400
committerLioncash <mathew1800@gmail.com>2017-09-02 17:27:19 -0400
commit5059332d954df538b3f771d39435ab2ceec643de (patch)
tree42a9705cd1705fc6154c7cd6c5025b9f50f48db8 /Source
parent657195fad5b613cfa19a3894fb1da70a169ceb93 (diff)
OGL/ProgramShaderCache: Remove unnecessary virtual keyword
This is superfluous, considering the override keyword is present.
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/VideoBackends/OGL/ProgramShaderCache.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/VideoBackends/OGL/ProgramShaderCache.h b/Source/Core/VideoBackends/OGL/ProgramShaderCache.h
index 41b1d4bb41..417c0ee5fd 100644
--- a/Source/Core/VideoBackends/OGL/ProgramShaderCache.h
+++ b/Source/Core/VideoBackends/OGL/ProgramShaderCache.h
@@ -146,9 +146,9 @@ private:
class SharedContextAsyncShaderCompiler : public VideoCommon::AsyncShaderCompiler
{
protected:
- virtual bool WorkerThreadInitMainThread(void** param) override;
- virtual bool WorkerThreadInitWorkerThread(void* param) override;
- virtual void WorkerThreadExit(void* param) override;
+ bool WorkerThreadInitMainThread(void** param) override;
+ bool WorkerThreadInitWorkerThread(void* param) override;
+ void WorkerThreadExit(void* param) override;
};
struct SharedContextData