diff options
Diffstat (limited to 'Private/NewBoot/CxxRuntime')
| -rw-r--r-- | Private/NewBoot/CxxRuntime/unwind.cxx | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/Private/NewBoot/CxxRuntime/unwind.cxx b/Private/NewBoot/CxxRuntime/unwind.cxx index acfc0b6b..f679bdd5 100644 --- a/Private/NewBoot/CxxRuntime/unwind.cxx +++ b/Private/NewBoot/CxxRuntime/unwind.cxx @@ -1,11 +1,8 @@ -namespace cxxkit -{ +namespace cxxkit { ///! @brief C++ ABI unwinding ///! finis array (r1) ///! n of finis (r2) -extern "C" void __unwind(void (**finis)(void), int cnt) -{ - for (int i = 0; i < cnt; ++i) - (finis[i])(); +extern "C" void __unwind(void (**finis)(void), int cnt) { + for (int i = 0; i < cnt; ++i) (finis[i])(); } -} // namespace cxxkit +} // namespace cxxkit |
