diff options
| author | Amlal <amlal@nekernel.org> | 2025-04-25 13:14:01 +0200 |
|---|---|---|
| committer | Amlal <amlal@nekernel.org> | 2025-04-25 13:14:01 +0200 |
| commit | 20042235d1f53ae428aa154e64afdbae5d8d91ad (patch) | |
| tree | 6ea42d1b30505a57301f8ff2916c78ce94ff6eaf /dev/LibC++/base_process.h | |
| parent | 0561a8d0a6ae7588309a6e3513bbfeeef5f0aa15 (diff) | |
meta: update .clang-format, format codebase.
Signed-off-by: Amlal <amlal@nekernel.org>
Diffstat (limited to 'dev/LibC++/base_process.h')
| -rw-r--r-- | dev/LibC++/base_process.h | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/dev/LibC++/base_process.h b/dev/LibC++/base_process.h index 7008b86..757e592 100644 --- a/dev/LibC++/base_process.h +++ b/dev/LibC++/base_process.h @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright (C) 2024-2025 Amlal El Mahrouss, all rights reserved. + Copyright (C) 2024-2025 Amlal El Mahrouss, all rights reserved. ------------------------------------------- */ @@ -12,11 +12,9 @@ extern "C" int exit(int code); /// @brief Standard C++ namespace -namespace std::base_process -{ - inline int exit(int code) - { - exit(code); - return -1; - } -} // namespace std::base_process +namespace std::base_process { +inline int exit(int code) { + exit(code); + return -1; +} +} // namespace std::base_process |
