summaryrefslogtreecommitdiffhomepage
path: root/include/CompilerKit/MachO.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-03-18 05:44:58 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-03-18 05:44:58 +0100
commit679e1cf7af3b36faf1160c34e688dc91d1409f46 (patch)
tree0d69fb045af20988c9bd4b39ee4a06601e1525ed /include/CompilerKit/MachO.h
parent4c98e23db8c34cfd7f81522dfb48ee7e949cc34e (diff)
[CHORE] Update format.sh and ran it.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include/CompilerKit/MachO.h')
-rw-r--r--include/CompilerKit/MachO.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/CompilerKit/MachO.h b/include/CompilerKit/MachO.h
index 05131ad..2942420 100644
--- a/include/CompilerKit/MachO.h
+++ b/include/CompilerKit/MachO.h
@@ -43,7 +43,9 @@ namespace MachO {
constexpr uint32_t kSectionAlign = 4;
/// @brief Helper to align a value to page boundary
- inline uint64_t AlignToPage(uint64_t value) { return (value + kPageSize - 1) & ~(kPageSize - 1); }
+ inline uint64_t AlignToPage(uint64_t value) {
+ return (value + kPageSize - 1) & ~(kPageSize - 1);
+ }
/// @brief Helper to copy segment/section name safely
inline void CopySegmentName(char* dest, const char* src) {