From 2aa04bc88d6b7c2808d69904b2fdc6756ca33317 Mon Sep 17 00:00:00 2001 From: Olly Betts Date: Wed, 11 Sep 2024 16:53:50 +1200 Subject: [PATCH] Fix missing newline at end of files --- Examples/test-suite/c/c_backend_cpp_exception_runme.c | 2 +- Examples/test-suite/c/c_backend_cpp_natural_std_string_runme.c | 2 +- Examples/test-suite/c_backend_cpp_exception.i | 2 +- Examples/test-suite/c_backend_cpp_natural_std_string.i | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Examples/test-suite/c/c_backend_cpp_exception_runme.c b/Examples/test-suite/c/c_backend_cpp_exception_runme.c index 206bedbbc..fb00f2ddd 100644 --- a/Examples/test-suite/c/c_backend_cpp_exception_runme.c +++ b/Examples/test-suite/c/c_backend_cpp_exception_runme.c @@ -11,4 +11,4 @@ int main() assert(c_backend_cpp_exception_checkVal_get() == 2); return 0; -} \ No newline at end of file +} diff --git a/Examples/test-suite/c/c_backend_cpp_natural_std_string_runme.c b/Examples/test-suite/c/c_backend_cpp_natural_std_string_runme.c index cb605e00e..49cea4450 100644 --- a/Examples/test-suite/c/c_backend_cpp_natural_std_string_runme.c +++ b/Examples/test-suite/c/c_backend_cpp_natural_std_string_runme.c @@ -15,4 +15,4 @@ int main() free(myComposedString); return 0; -} \ No newline at end of file +} diff --git a/Examples/test-suite/c_backend_cpp_exception.i b/Examples/test-suite/c_backend_cpp_exception.i index 3b56d91d7..e14193059 100644 --- a/Examples/test-suite/c_backend_cpp_exception.i +++ b/Examples/test-suite/c_backend_cpp_exception.i @@ -22,4 +22,4 @@ void throwSomeUnknownException(void) { throw SomeUnkownException(); } -%} \ No newline at end of file +%} diff --git a/Examples/test-suite/c_backend_cpp_natural_std_string.i b/Examples/test-suite/c_backend_cpp_natural_std_string.i index 6bf8e6bd2..887e16299 100644 --- a/Examples/test-suite/c_backend_cpp_natural_std_string.i +++ b/Examples/test-suite/c_backend_cpp_natural_std_string.i @@ -10,4 +10,4 @@ someString += appendedString; return someString; } -%} \ No newline at end of file +%}