* c++ 全局对象析构 */
| 228 | * c++ 全局对象析构 |
| 229 | */ |
| 230 | auto CppDeInit() -> void { |
| 231 | // 调用析构函数 |
| 232 | std::for_each(&__fini_array_start, &__fini_array_end, |
| 233 | [](function_t func) { (func)(); }); |
| 234 | } |
nothing calls this directly
no outgoing calls
no test coverage detected