Changeset 86 for trunk/src/lua/lua_state.cc
- Timestamp:
- 06/02/13 18:38:01 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lua/lua_state.cc
r79 r86 17 17 lua::stack_guard::stack_guard( lua::state* L ) 18 18 : L(L), m_level( lua_gettop(L->L) ) 19 { 20 21 } 22 23 lua::stack_guard::stack_guard( lua::state& L ) 24 : L(&L), m_level( lua_gettop((&L)->L) ) 19 25 { 20 26
Note: See TracChangeset
for help on using the changeset viewer.