diff options
| author | NeoBrainX <NeoBrainX@gmail.com> | 2013-03-29 22:29:37 +0100 |
|---|---|---|
| committer | NeoBrainX <NeoBrainX@gmail.com> | 2013-03-29 22:29:37 +0100 |
| commit | cdddb26bbafce034143465da7d2e250cded5fd53 (patch) | |
| tree | 355f29fa1bdd7f96fd789a47c7c84566ec4d70cc /Source/Core | |
| parent | 2afd892e466e656a2dc623bb5d6574d0d6c5533a (diff) | |
Apparently override is less fun than I thought.
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/VideoCommon/Src/ShaderGenCommon.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/Src/ShaderGenCommon.h b/Source/Core/VideoCommon/Src/ShaderGenCommon.h index a904a8e635..eabd6f7c07 100644 --- a/Source/Core/VideoCommon/Src/ShaderGenCommon.h +++ b/Source/Core/VideoCommon/Src/ShaderGenCommon.h @@ -71,7 +71,7 @@ public: } template<class T> - inline T& GetUidData() override { return data; } + inline T& GetUidData() { return data; } private: union |
