diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2018-12-28 21:44:09 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2018-12-28 21:44:09 +0000 |
| commit | 93f9d3d462d52294f7ab918c39cdfc03c6838b0b (patch) | |
| tree | 1e0d9bdcd92473015d8fa1b124c26ab24184d291 /RenderScript/include/PSODescParser.h | |
| parent | Fixed clang warning (diff) | |
| download | DiligentTools-93f9d3d462d52294f7ab918c39cdfc03c6838b0b.tar.gz DiligentTools-93f9d3d462d52294f7ab918c39cdfc03c6838b0b.zip | |
Fixed clang build warnings re overridden virtual functions
Diffstat (limited to 'RenderScript/include/PSODescParser.h')
| -rw-r--r-- | RenderScript/include/PSODescParser.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/RenderScript/include/PSODescParser.h b/RenderScript/include/PSODescParser.h index 8d732af..be67fed 100644 --- a/RenderScript/include/PSODescParser.h +++ b/RenderScript/include/PSODescParser.h @@ -31,15 +31,15 @@ namespace Diligent { - class PSODescParser : public EngineObjectParserCommon<IPipelineState> + class PSODescParser final : public EngineObjectParserCommon<IPipelineState> { public: PSODescParser( IRenderDevice *pRenderDevice, lua_State *L ); static const Char* PSODescLibName; protected: - virtual void CreateObj( lua_State *L ); - + virtual void CreateObj( lua_State *L )override final; + private: // PipelineStateDesc structure does not provide storage for the Name field. // We need to use ObjectDescWrapper<> to be able to store the field. |
