diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2018-12-24 07:20:34 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2018-12-24 07:20:34 +0000 |
| commit | 561d79147a70b9706b802f4da9150b077fcf1884 (patch) | |
| tree | 8c21c3feee3946d65cbedf6a41fca2c431e1dfbf /RenderScript/src | |
| parent | Removed local redefinition of Align() (diff) | |
| download | DiligentTools-561d79147a70b9706b802f4da9150b077fcf1884.tar.gz DiligentTools-561d79147a70b9706b802f4da9150b077fcf1884.zip | |
Fixed clang warning
Diffstat (limited to 'RenderScript/src')
| -rw-r--r-- | RenderScript/src/EngineObjectParserBase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/RenderScript/src/EngineObjectParserBase.cpp b/RenderScript/src/EngineObjectParserBase.cpp index a0a83dc..90ae58d 100644 --- a/RenderScript/src/EngineObjectParserBase.cpp +++ b/RenderScript/src/EngineObjectParserBase.cpp @@ -170,7 +170,7 @@ namespace Diligent // registry with key tname, and returns 1. In both cases it pushes onto the stack the final // value associated with tname in the registry. auto Created = luaL_newmetatable( L, m_MetatableRegistryName.c_str() ); // -0 | +1 -> +1 - VERIFY( Created, "Metatble with the same name already registered!" ); + VERIFY( Created, "Metatble with the same name already registered!" ); (void)Created; // http://lua-users.org/wiki/MetatableEvents luaL_Reg MetaMethods[] = { |
