diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2018-12-01 07:40:30 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2018-12-01 07:40:30 +0000 |
| commit | 22b996a699ee75b3d319bca48370b8687757fa1e (patch) | |
| tree | b6e359ab6b17b7b3a48b83a5668831eb653addc2 /RenderScript/include/LuaBindings.h | |
| parent | Added parsing SET_RENDER_TARGETS_FLAGS (diff) | |
| download | DiligentTools-22b996a699ee75b3d319bca48370b8687757fa1e.tar.gz DiligentTools-22b996a699ee75b3d319bca48370b8687757fa1e.zip | |
Fixed linux build errors
Diffstat (limited to 'RenderScript/include/LuaBindings.h')
| -rw-r--r-- | RenderScript/include/LuaBindings.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/RenderScript/include/LuaBindings.h b/RenderScript/include/LuaBindings.h index a09e1d0..468145f 100644 --- a/RenderScript/include/LuaBindings.h +++ b/RenderScript/include/LuaBindings.h @@ -461,7 +461,7 @@ namespace Diligent BindingsMap.insert( std::make_pair( #Member, std::unique_ptr<MemberBinderBase>(pNewBinder) ) ); \ }while(false) - template< typename EnumType, typename FlagsType = std::underlying_type<EnumType>::type > + template< typename EnumType, typename FlagsType = typename std::underlying_type<EnumType>::type > class FlagsLoader : public MemberBinderBase { public: |
