| 53 | static InitFunc* init_funcs = nullptr; |
| 54 | |
| 55 | void _embind_initialize_bindings() { |
| 56 | for (auto* f = init_funcs; f; f = f->next) { |
| 57 | f->init_func(); |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | void _embind_register_bindings(InitFunc* f) { |
| 62 | f->next = init_funcs; |
nothing calls this directly
no outgoing calls
no test coverage detected