Fix missing newline at end of files

This commit is contained in:
Olly Betts 2024-09-11 16:53:50 +12:00
parent a183c7c980
commit 2aa04bc88d
4 changed files with 4 additions and 4 deletions

View File

@ -11,4 +11,4 @@ int main()
assert(c_backend_cpp_exception_checkVal_get() == 2); assert(c_backend_cpp_exception_checkVal_get() == 2);
return 0; return 0;
} }

View File

@ -15,4 +15,4 @@ int main()
free(myComposedString); free(myComposedString);
return 0; return 0;
} }

View File

@ -22,4 +22,4 @@
void throwSomeUnknownException(void) { void throwSomeUnknownException(void) {
throw SomeUnkownException(); throw SomeUnkownException();
} }
%} %}

View File

@ -10,4 +10,4 @@
someString += appendedString; someString += appendedString;
return someString; return someString;
} }
%} %}