diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-01-30 23:03:30 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-01-30 23:03:30 +0100 |
| commit | 71a35e96d5597fca8882e96976e9461dc3dd85e9 (patch) | |
| tree | 9b5964cad0edefd00cb2a4eb3842c6e1b428e6bd /Private/NewBoot/CxxRuntime | |
| parent | df44a789fc90497325ba91be515c02145ae39142 (diff) | |
Bootloader: have been working on unifing the BTextWriter class.
Next commit will be about the BFileReader class. It's going to read files
from EFI.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
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 |
