Changeset 198 for trunk/src/lua/lua_function.cc
- Timestamp:
- 08/11/13 17:19:03 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lua/lua_function.cc
r182 r198 11 11 using namespace nv; 12 12 13 lua::function_base::function_base( lua_State* L, const path& a_path, bool global /*= true*/ ) : L(L)13 lua::function_base::function_base( lua_State* a_L, const path& a_path, bool a_global /*= true*/ ) : L(a_L) 14 14 { 15 if ( !a_path.resolve( L, global ) )15 if ( !a_path.resolve( L, a_global ) ) 16 16 { 17 17 lua_pop( L, 1 ); … … 27 27 } 28 28 29 lua::function_base::function_base( const function_base& func ) : L( L)29 lua::function_base::function_base( const function_base& func ) : L(func.L) 30 30 { 31 31 lua_rawgeti( L, LUA_REGISTRYINDEX, func.m_ref );
Note: See TracChangeset
for help on using the changeset viewer.