| 43 | } |
| 44 | GluaStateScope::GluaStateScope(const GluaStateScope &other) : _L(other._L) {} |
| 45 | GluaStateScope::~GluaStateScope() { |
| 46 | if (nullptr != _L) |
| 47 | close_lua_state(_L); |
| 48 | } |
| 49 | |
| 50 | void GluaStateScope::change_in_file(FILE *in) |
| 51 | { |
nothing calls this directly
no test coverage detected