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 /src/CompilerKit | |
| parent | 999dc83cac37efc109da4d562a8a75d1f6fc7c86 (diff) | |
feat: add newline to files.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/CompilerKit')
| -rw-r--r-- | src/CompilerKit/ck-osx-san.json | 2 | ||||
| -rw-r--r-- | src/CompilerKit/ck-osx.json | 2 | ||||
| -rw-r--r-- | src/CompilerKit/ck-posix.json | 1 | ||||
| -rw-r--r-- | src/CompilerKit/src/Assemblers/Assembler+32x0.cc | 1 | ||||
| -rw-r--r-- | src/CompilerKit/src/Assemblers/Assembler+64x0.cc | 1 | ||||
| -rw-r--r-- | src/CompilerKit/src/Assemblers/Assembler+AMD64.cc | 1 | ||||
| -rw-r--r-- | src/CompilerKit/src/Assemblers/Assembler+ARM64.cc | 1 | ||||
| -rw-r--r-- | src/CompilerKit/src/Assemblers/Assembler+PowerPC.cc | 1 | ||||
| -rw-r--r-- | src/CompilerKit/src/Compilers/CCompiler+64x0.cc | 1 | ||||
| -rw-r--r-- | src/CompilerKit/src/Compilers/CCompiler+ARM64.cc | 1 | ||||
| -rw-r--r-- | src/CompilerKit/src/Compilers/CCompiler+Power64.cc | 1 | ||||
| -rw-r--r-- | src/CompilerKit/src/Compilers/CPlusPlusCompiler+AMD64.cc | 1 | ||||
| -rw-r--r-- | src/CompilerKit/src/Linkers/DynamicLinker64+PEF.cc | 1 | ||||
| -rw-r--r-- | src/CompilerKit/src/Preprocessor/Preprocessor+Generic.cc | 1 |
14 files changed, 14 insertions, 2 deletions
diff --git a/src/CompilerKit/ck-osx-san.json b/src/CompilerKit/ck-osx-san.json index 137596f..754e5e2 100644 --- a/src/CompilerKit/ck-osx-san.json +++ b/src/CompilerKit/ck-osx-san.json @@ -27,4 +27,4 @@ "CK_USE_STRUCTS=1", "kDistReleaseBranch=$(git rev-parse --abbrev-ref HEAD)-$(uuidgen)" ] -}
\ No newline at end of file +} diff --git a/src/CompilerKit/ck-osx.json b/src/CompilerKit/ck-osx.json index 392140a..89c53ed 100644 --- a/src/CompilerKit/ck-osx.json +++ b/src/CompilerKit/ck-osx.json @@ -22,4 +22,4 @@ "CK_USE_STRUCTS=1", "kDistReleaseBranch=$(git rev-parse --abbrev-ref HEAD)-$(uuidgen)" ] -}
\ No newline at end of file +} diff --git a/src/CompilerKit/ck-posix.json b/src/CompilerKit/ck-posix.json index f0a4a72..2a006cf 100644 --- a/src/CompilerKit/ck-posix.json +++ b/src/CompilerKit/ck-posix.json @@ -23,3 +23,4 @@ ], "run_after_build": true } + diff --git a/src/CompilerKit/src/Assemblers/Assembler+32x0.cc b/src/CompilerKit/src/Assemblers/Assembler+32x0.cc index 39d72f9..793bfb3 100644 --- a/src/CompilerKit/src/Assemblers/Assembler+32x0.cc +++ b/src/CompilerKit/src/Assemblers/Assembler+32x0.cc @@ -37,3 +37,4 @@ NECTAR_MODULE(NEAssemblerMain32000) { CompilerKit::install_signal(SIGSEGV, CompilerKit::Detail::drvi_crash_handler); return EXIT_SUCCESS; } + diff --git a/src/CompilerKit/src/Assemblers/Assembler+64x0.cc b/src/CompilerKit/src/Assemblers/Assembler+64x0.cc index 067b303..4c1f855 100644 --- a/src/CompilerKit/src/Assemblers/Assembler+64x0.cc +++ b/src/CompilerKit/src/Assemblers/Assembler+64x0.cc @@ -879,3 +879,4 @@ bool CompilerKit::Encoder64x0::WriteLine(std::string line, std::string file) { } // Last rev 13-1-24 + diff --git a/src/CompilerKit/src/Assemblers/Assembler+AMD64.cc b/src/CompilerKit/src/Assemblers/Assembler+AMD64.cc index 8dc1ae3..4035fd0 100644 --- a/src/CompilerKit/src/Assemblers/Assembler+AMD64.cc +++ b/src/CompilerKit/src/Assemblers/Assembler+AMD64.cc @@ -1210,3 +1210,4 @@ bool CompilerKit::EncoderAMD64::WriteLine(std::string line, std::string file) { } // Last rev 13-1-24 + diff --git a/src/CompilerKit/src/Assemblers/Assembler+ARM64.cc b/src/CompilerKit/src/Assemblers/Assembler+ARM64.cc index 6ca665b..74e5785 100644 --- a/src/CompilerKit/src/Assemblers/Assembler+ARM64.cc +++ b/src/CompilerKit/src/Assemblers/Assembler+ARM64.cc @@ -588,3 +588,4 @@ bool CompilerKit::EncoderARM64::WriteLine(std::string line, std::string file) { } // Last rev 13-1-24 + diff --git a/src/CompilerKit/src/Assemblers/Assembler+PowerPC.cc b/src/CompilerKit/src/Assemblers/Assembler+PowerPC.cc index 19108f8..e5d59a9 100644 --- a/src/CompilerKit/src/Assemblers/Assembler+PowerPC.cc +++ b/src/CompilerKit/src/Assemblers/Assembler+PowerPC.cc @@ -913,3 +913,4 @@ bool CompilerKit::EncoderPowerPC::WriteLine(std::string line, std::string file) } // Last rev 13-1-24 + diff --git a/src/CompilerKit/src/Compilers/CCompiler+64x0.cc b/src/CompilerKit/src/Compilers/CCompiler+64x0.cc index 7468cce..3f5f38e 100644 --- a/src/CompilerKit/src/Compilers/CCompiler+64x0.cc +++ b/src/CompilerKit/src/Compilers/CCompiler+64x0.cc @@ -1265,3 +1265,4 @@ NECTAR_MODULE(CompilerCLang64x0) { } // Last rev 8-1-24 + diff --git a/src/CompilerKit/src/Compilers/CCompiler+ARM64.cc b/src/CompilerKit/src/Compilers/CCompiler+ARM64.cc index 028a027..857010a 100644 --- a/src/CompilerKit/src/Compilers/CCompiler+ARM64.cc +++ b/src/CompilerKit/src/Compilers/CCompiler+ARM64.cc @@ -1264,3 +1264,4 @@ NECTAR_MODULE(CompilerCLangARM64) { } // Last rev 8-1-24 + diff --git a/src/CompilerKit/src/Compilers/CCompiler+Power64.cc b/src/CompilerKit/src/Compilers/CCompiler+Power64.cc index 99a3ea7..26deaad 100644 --- a/src/CompilerKit/src/Compilers/CCompiler+Power64.cc +++ b/src/CompilerKit/src/Compilers/CCompiler+Power64.cc @@ -1278,3 +1278,4 @@ NECTAR_MODULE(CompilerCLangPowerPC) { } // Last rev 8-1-24 + diff --git a/src/CompilerKit/src/Compilers/CPlusPlusCompiler+AMD64.cc b/src/CompilerKit/src/Compilers/CPlusPlusCompiler+AMD64.cc index 1a14afb..d1fa637 100644 --- a/src/CompilerKit/src/Compilers/CPlusPlusCompiler+AMD64.cc +++ b/src/CompilerKit/src/Compilers/CPlusPlusCompiler+AMD64.cc @@ -901,3 +901,4 @@ NECTAR_MODULE(CompilerCPlusPlusAMD64) { // // Last rev 25-8-7 // + diff --git a/src/CompilerKit/src/Linkers/DynamicLinker64+PEF.cc b/src/CompilerKit/src/Linkers/DynamicLinker64+PEF.cc index 0b240bd..0c785fd 100644 --- a/src/CompilerKit/src/Linkers/DynamicLinker64+PEF.cc +++ b/src/CompilerKit/src/Linkers/DynamicLinker64+PEF.cc @@ -676,3 +676,4 @@ NECTAR_MODULE(DynamicLinker64PEF) { } // Last rev 13-1-24 + diff --git a/src/CompilerKit/src/Preprocessor/Preprocessor+Generic.cc b/src/CompilerKit/src/Preprocessor/Preprocessor+Generic.cc index 9cae903..d7ada66 100644 --- a/src/CompilerKit/src/Preprocessor/Preprocessor+Generic.cc +++ b/src/CompilerKit/src/Preprocessor/Preprocessor+Generic.cc @@ -891,3 +891,4 @@ NECTAR_MODULE(CPlusPlusPreprocessorMain) { } // Last rev 8-1-24 + |
