From 52464b23cedc8ea26af253f5c245c97dd035cd7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Ahlb=C3=A4ck?= Date: Fri, 6 Dec 2024 15:00:03 +0100 Subject: [PATCH] Add newlines to end of files that are missing it --- CMake/FindPThreads.cmake | 2 +- CMake/FindSphinx.cmake | 2 +- src/fmpz_mod_mat/det.c | 2 +- src/gr_mat/set_gr_mat_other.c | 2 +- src/mpn_extras/profile/p-mullow.c | 2 +- src/nfloat/test/t-nfixed_mat_mul.c | 2 +- src/nfloat/test/t-nfixed_mat_mul_classical.c | 2 +- src/nfloat/test/t-nfixed_mat_mul_strassen.c | 2 +- src/nfloat/test/t-nfixed_mat_mul_waksman.c | 2 +- src/nfloat/test/t-nfloat_complex.c | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/CMake/FindPThreads.cmake b/CMake/FindPThreads.cmake index c3d377b1f5..01da7e0005 100644 --- a/CMake/FindPThreads.cmake +++ b/CMake/FindPThreads.cmake @@ -14,4 +14,4 @@ find_library(PThreads_LIBRARIES NAMES pthreads libpthreads ) include(FindPackageHandleStandardArgs) FIND_PACKAGE_HANDLE_STANDARD_ARGS(PThreads DEFAULT_MSG PThreads_INCLUDE_DIRS PThreads_LIBRARIES) -mark_as_advanced(PThreads_INCLUDE_DIRS PThreads_LIBRARIES) \ No newline at end of file +mark_as_advanced(PThreads_INCLUDE_DIRS PThreads_LIBRARIES) diff --git a/CMake/FindSphinx.cmake b/CMake/FindSphinx.cmake index e21da9337d..c8f72f3355 100644 --- a/CMake/FindSphinx.cmake +++ b/CMake/FindSphinx.cmake @@ -48,4 +48,4 @@ function(Sphinx_add_target target_name builder conf source destination) APPEND PROPERTY ADDITIONAL_MAKE_CLEAN_FILES ${destination} ) -endfunction() \ No newline at end of file +endfunction() diff --git a/src/fmpz_mod_mat/det.c b/src/fmpz_mod_mat/det.c index d0b9844247..d015cd56b1 100644 --- a/src/fmpz_mod_mat/det.c +++ b/src/fmpz_mod_mat/det.c @@ -39,4 +39,4 @@ void fmpz_mod_mat_det(fmpz_t res, const fmpz_mod_mat_t mat, const fmpz_mod_ctx_t GR_MUST_SUCCEED(gr_mat_det_berkowitz(res, (const gr_mat_struct *) mat, gr_ctx)); } } -} \ No newline at end of file +} diff --git a/src/gr_mat/set_gr_mat_other.c b/src/gr_mat/set_gr_mat_other.c index a410ae3d8a..ab192347bf 100644 --- a/src/gr_mat/set_gr_mat_other.c +++ b/src/gr_mat/set_gr_mat_other.c @@ -31,4 +31,4 @@ gr_mat_set_gr_mat_other(gr_mat_t res, const gr_mat_t mat, gr_ctx_t mat_ctx, gr_c status |= gr_set_other(GR_MAT_ENTRY(res, i, j, sz), GR_MAT_ENTRY(mat, i, j, mat_sz), mat_ctx, ctx); return status; -} \ No newline at end of file +} diff --git a/src/mpn_extras/profile/p-mullow.c b/src/mpn_extras/profile/p-mullow.c index 46a6374b94..97f738ac8e 100644 --- a/src/mpn_extras/profile/p-mullow.c +++ b/src/mpn_extras/profile/p-mullow.c @@ -63,4 +63,4 @@ main(void) return 0; } -#undef N_MAX \ No newline at end of file +#undef N_MAX diff --git a/src/nfloat/test/t-nfixed_mat_mul.c b/src/nfloat/test/t-nfixed_mat_mul.c index 54788e4f4b..3201b931fc 100644 --- a/src/nfloat/test/t-nfixed_mat_mul.c +++ b/src/nfloat/test/t-nfixed_mat_mul.c @@ -107,4 +107,4 @@ TEST_FUNCTION_START(nfixed_mat_mul, state) } TEST_FUNCTION_END(state); -} \ No newline at end of file +} diff --git a/src/nfloat/test/t-nfixed_mat_mul_classical.c b/src/nfloat/test/t-nfixed_mat_mul_classical.c index a6c86ab88c..bbc9c9feee 100644 --- a/src/nfloat/test/t-nfixed_mat_mul_classical.c +++ b/src/nfloat/test/t-nfixed_mat_mul_classical.c @@ -107,4 +107,4 @@ TEST_FUNCTION_START(nfixed_mat_mul_classical, state) } TEST_FUNCTION_END(state); -} \ No newline at end of file +} diff --git a/src/nfloat/test/t-nfixed_mat_mul_strassen.c b/src/nfloat/test/t-nfixed_mat_mul_strassen.c index 3e6438db8b..675850fe63 100644 --- a/src/nfloat/test/t-nfixed_mat_mul_strassen.c +++ b/src/nfloat/test/t-nfixed_mat_mul_strassen.c @@ -110,4 +110,4 @@ TEST_FUNCTION_START(nfixed_mat_mul_strassen, state) } TEST_FUNCTION_END(state); -} \ No newline at end of file +} diff --git a/src/nfloat/test/t-nfixed_mat_mul_waksman.c b/src/nfloat/test/t-nfixed_mat_mul_waksman.c index 2a1495a43d..a68c805ede 100644 --- a/src/nfloat/test/t-nfixed_mat_mul_waksman.c +++ b/src/nfloat/test/t-nfixed_mat_mul_waksman.c @@ -107,4 +107,4 @@ TEST_FUNCTION_START(nfixed_mat_mul_waksman, state) } TEST_FUNCTION_END(state); -} \ No newline at end of file +} diff --git a/src/nfloat/test/t-nfloat_complex.c b/src/nfloat/test/t-nfloat_complex.c index 16c18f114b..3b47c1eece 100644 --- a/src/nfloat/test/t-nfloat_complex.c +++ b/src/nfloat/test/t-nfloat_complex.c @@ -66,4 +66,4 @@ TEST_FUNCTION_START(nfloat_complex, state) } TEST_FUNCTION_END(state); -} \ No newline at end of file +}