| 78 | } |
| 79 | |
| 80 | void scope::register_(lua_State* L) const |
| 81 | { |
| 82 | for (detail::registration* r = m_chain; r != nullptr; r = r->m_next) |
| 83 | { |
| 84 | LUABIND_CHECK_STACK(L); |
| 85 | r->register_(L); |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | } // namespace luabind |
| 90 |
no outgoing calls
no test coverage detected