summaryrefslogtreecommitdiffstats
path: root/RenderScript/src
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2018-12-24 07:20:34 +0000
committerEgor Yusov <egor.yusov@gmail.com>2018-12-24 07:20:34 +0000
commit561d79147a70b9706b802f4da9150b077fcf1884 (patch)
tree8c21c3feee3946d65cbedf6a41fca2c431e1dfbf /RenderScript/src
parentRemoved local redefinition of Align() (diff)
downloadDiligentTools-561d79147a70b9706b802f4da9150b077fcf1884.tar.gz
DiligentTools-561d79147a70b9706b802f4da9150b077fcf1884.zip
Fixed clang warning
Diffstat (limited to 'RenderScript/src')
-rw-r--r--RenderScript/src/EngineObjectParserBase.cpp2
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[] = {