diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-23 08:36:16 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-23 08:36:16 +0100 |
| commit | 0d197225d9c90123df67a752479f890de5ebe413 (patch) | |
| tree | f3c3363681cf69c1c468e2403d8cafa6b8eebf03 /include/LibC++ | |
| parent | 999dc83cac37efc109da4d562a8a75d1f6fc7c86 (diff) | |
feat: add newline to files.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include/LibC++')
| -rw-r--r-- | include/LibC++/__abi.h | 2 | ||||
| -rw-r--r-- | include/LibC++/__power64.inc | 1 | ||||
| -rw-r--r-- | include/LibC++/base_alloc.h | 1 | ||||
| -rw-r--r-- | include/LibC++/base_exception.h | 1 | ||||
| -rw-r--r-- | include/LibC++/base_math.h | 1 | ||||
| -rw-r--r-- | include/LibC++/base_process.h | 1 | ||||
| -rw-r--r-- | include/LibC++/defines.h | 1 | ||||
| -rw-r--r-- | include/LibC++/filesystem.h | 1 | ||||
| -rwxr-xr-x | include/LibC++/make-stdcpp-hdrs.sh | 1 | ||||
| -rw-r--r-- | include/LibC++/new.h | 1 | ||||
| -rw-r--r-- | include/LibC++/utility.h | 1 |
11 files changed, 11 insertions, 1 deletions
diff --git a/include/LibC++/__abi.h b/include/LibC++/__abi.h index 80a0398..e63b9b5 100644 --- a/include/LibC++/__abi.h +++ b/include/LibC++/__abi.h @@ -19,4 +19,4 @@ inline void __compilerkit_unreachable(void) { while (1); } -__fini_decl()
\ No newline at end of file +__fini_decl() diff --git a/include/LibC++/__power64.inc b/include/LibC++/__power64.inc index 8a189ae..8b65ad7 100644 --- a/include/LibC++/__power64.inc +++ b/include/LibC++/__power64.inc @@ -37,3 +37,4 @@ #endif #endif + diff --git a/include/LibC++/base_alloc.h b/include/LibC++/base_alloc.h index cd95806..96a8161 100644 --- a/include/LibC++/base_alloc.h +++ b/include/LibC++/base_alloc.h @@ -41,3 +41,4 @@ inline void release_nothrow(KindClass ptr) noexcept { release(ptr); } } // namespace std::base_alloc + diff --git a/include/LibC++/base_exception.h b/include/LibC++/base_exception.h index 0f81431..571e244 100644 --- a/include/LibC++/base_exception.h +++ b/include/LibC++/base_exception.h @@ -35,3 +35,4 @@ inline void __throw_bad_array_new_length(const char* what) { __builtin_unreachable(); // prevent from continuing. } } // namespace std::base_exception::abi + diff --git a/include/LibC++/base_math.h b/include/LibC++/base_math.h index 22c9ab9..c9f390d 100644 --- a/include/LibC++/base_math.h +++ b/include/LibC++/base_math.h @@ -96,3 +96,4 @@ typename<class Result> using callable_type = Result (*)(size_t n, ...); #ifdef __cpp_lib_base_math #define __cpp_lib_base_math 1 #endif + diff --git a/include/LibC++/base_process.h b/include/LibC++/base_process.h index 8fbe7b7..a3e3147 100644 --- a/include/LibC++/base_process.h +++ b/include/LibC++/base_process.h @@ -43,3 +43,4 @@ __fini_decl() return -1; } } // namespace std::base_process + diff --git a/include/LibC++/defines.h b/include/LibC++/defines.h index d6a5369..c631a4a 100644 --- a/include/LibC++/defines.h +++ b/include/LibC++/defines.h @@ -79,3 +79,4 @@ struct nothrow_t; } // namespace std #endif /* __NECTAR_DEFINES_H__ */ + diff --git a/include/LibC++/filesystem.h b/include/LibC++/filesystem.h index 91218e8..d3030b6 100644 --- a/include/LibC++/filesystem.h +++ b/include/LibC++/filesystem.h @@ -22,3 +22,4 @@ class directory_iterator; #endif #endif // __NECTAR_FS_H__ + diff --git a/include/LibC++/make-stdcpp-hdrs.sh b/include/LibC++/make-stdcpp-hdrs.sh index 880f227..09d5616 100755 --- a/include/LibC++/make-stdcpp-hdrs.sh +++ b/include/LibC++/make-stdcpp-hdrs.sh @@ -11,3 +11,4 @@ baseName=`echo $f | cut -d "." -f 1` cp $f $outputDir$baseName done + diff --git a/include/LibC++/new.h b/include/LibC++/new.h index db25b82..111e1aa 100644 --- a/include/LibC++/new.h +++ b/include/LibC++/new.h @@ -63,3 +63,4 @@ void operator delete(void*) noexcept; void operator delete(void*, size_t) noexcept; void operator delete[](void*) noexcept; + diff --git a/include/LibC++/utility.h b/include/LibC++/utility.h index 0ee2735..b56e95f 100644 --- a/include/LibC++/utility.h +++ b/include/LibC++/utility.h @@ -28,3 +28,4 @@ inline auto move(Args&& arg) -> Args&& { } // namespace std #endif // LIBCXX_UTILITY_H + |
