Add missing end of file for text file

For portability text file should end with 0x0A
This commit is contained in:
Mathieu Malaterre 2021-08-31 22:10:11 +02:00 committed by Victor Derks
parent 482417c66d
commit 255a64b8c3
5 changed files with 5 additions and 5 deletions

View File

@ -180,4 +180,4 @@ endif()
if(CHARLS_BUILD_SAMPLES)
add_subdirectory(samples)
endif()
endif()

View File

@ -12,4 +12,4 @@ target_link_libraries(fuzztest PRIVATE charls)
if(MSVC)
# POSIX functions are used, required for AFL.
target_compile_definitions(fuzztest PRIVATE _CRT_SECURE_NO_WARNINGS)
endif()
endif()

View File

@ -2,4 +2,4 @@
# SPDX-License-Identifier: BSD-3-Clause
add_subdirectory(convert.c)
add_subdirectory(convert.cpp)
add_subdirectory(convert.cpp)

View File

@ -19,4 +19,4 @@ if(MSVC)
# Not all compilers come with the secure C standard extension functions, making it difficult to use them.
# Disable the MSVC warning about not using these functions to keep the sample code simple and easy to understand.
target_compile_definitions(convert-c PRIVATE _CRT_SECURE_NO_WARNINGS)
endif()
endif()

View File

@ -17,4 +17,4 @@ endif()
set_target_properties(convert-cpp PROPERTIES CXX_VISIBILITY_PRESET hidden)
target_link_libraries(convert-cpp PRIVATE charls)
target_link_libraries(convert-cpp PRIVATE charls)