Ignore:
Timestamp:
08/11/13 17:19:03 (12 years ago)
Author:
epyon
Message:
  • warning cleanup for clang and gcc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lua/lua_function.cc

    r182 r198  
    1111using namespace nv;
    1212
    13 lua::function_base::function_base( lua_State* L, const path& a_path, bool global /*= true*/ ) : L(L)
     13lua::function_base::function_base( lua_State* a_L, const path& a_path, bool a_global /*= true*/ ) : L(a_L)
    1414{
    15         if ( !a_path.resolve( L, global ) )
     15        if ( !a_path.resolve( L, a_global ) )
    1616        {
    1717                lua_pop( L, 1 );
     
    2727}
    2828
    29 lua::function_base::function_base( const function_base& func ) : L(L)
     29lua::function_base::function_base( const function_base& func ) : L(func.L)
    3030{
    3131        lua_rawgeti( L, LUA_REGISTRYINDEX, func.m_ref );
Note: See TracChangeset for help on using the changeset viewer.