Changeset 433 for trunk/src/lua/lua_state.cc
- Timestamp:
- 07/21/15 19:40:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lua/lua_state.cc
r431 r433 116 116 if ( !p.resolve( m_state, global ) ) 117 117 { 118 NV_LOG_ERROR( "Lua error : not a valid path - ", p.to_string() );118 NV_LOG_ERROR( "Lua error : not a valid path - ", p.to_string().c_str() ); 119 119 return false; 120 120 } … … 123 123 { 124 124 lua_pop( m_state, 1 ); 125 NV_LOG_ERROR( "Lua error : not a valid function - ", p.to_string() );125 NV_LOG_ERROR( "Lua error : not a valid function - ", p.to_string().c_str() ); 126 126 return false; 127 127 } … … 442 442 for ( int i = 0; i < top; ++i ) 443 443 { 444 NV_LOG_DEBUG( "#", i+1, " - ", lua_typename(m_state, lua_type(m_state, i+1) ), " = ", nlua_typecontent(m_state, i+1) );444 NV_LOG_DEBUG( "#", i+1, " - ", lua_typename(m_state, lua_type(m_state, i+1) ), " = ", nlua_typecontent(m_state, i+1).c_str() ); 445 445 } 446 446 }
Note: See TracChangeset
for help on using the changeset viewer.