mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 13:49:53 -06: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