mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-08-19 00:42:58 -05:00
Make overriding explicit and remove redundant virtual specifiers on overriding destructors - Core & UnitTests
This commit is contained in:
@@ -71,7 +71,7 @@ class SWShader final : public AbstractShader
|
||||
{
|
||||
public:
|
||||
explicit SWShader(ShaderStage stage) : AbstractShader(stage) {}
|
||||
~SWShader() = default;
|
||||
~SWShader() override = default;
|
||||
|
||||
BinaryData GetBinary() const override { return {}; }
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user