| 24 | {} |
| 25 | |
| 26 | void register_(lua_State* L) const |
| 27 | { |
| 28 | object fn = make_function(L, f, deduce_signature(f), policies); |
| 29 | |
| 30 | add_overload( |
| 31 | object(from_stack(L, -1)) |
| 32 | , name |
| 33 | , fn |
| 34 | ); |
| 35 | } |
| 36 | |
| 37 | char const* name; |
| 38 | F f; |
nothing calls this directly
no test coverage detected