mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
Added virtual destructor to FPresentShaderBase class
No more 'delete called on non-final class that has virtual functions but non-virtual destructor' warnings reported by GCC/Clang
This commit is contained in:
parent
d77718d422
commit
0e9f52f9e5
1 changed files with 2 additions and 1 deletions
|
@ -6,6 +6,7 @@
|
|||
class FPresentShaderBase
|
||||
{
|
||||
public:
|
||||
virtual ~FPresentShaderBase() {}
|
||||
virtual void Bind() = 0;
|
||||
|
||||
FBufferedUniform1f InvGamma;
|
||||
|
|
Loading…
Reference in a new issue