From 6d5cfd575abd05c387f93be060c8fc88fd39e482 Mon Sep 17 00:00:00 2001 From: Federico Stazi Date: Thu, 6 Aug 2020 21:41:02 +0000 Subject: [PATCH] Added new line at the end of files --- oss-internship-2020/curl/CMakeLists.txt | 2 +- oss-internship-2020/curl/custom_curl/CMakeLists.txt | 2 +- oss-internship-2020/curl/custom_curl/custom_curl.cc | 2 +- oss-internship-2020/curl/custom_curl/custom_curl.h | 2 +- oss-internship-2020/curl/examples/CMakeLists.txt | 2 +- oss-internship-2020/curl/examples/example1.cc | 1 - 6 files changed, 5 insertions(+), 6 deletions(-) diff --git a/oss-internship-2020/curl/CMakeLists.txt b/oss-internship-2020/curl/CMakeLists.txt index 5207271..8cd4157 100644 --- a/oss-internship-2020/curl/CMakeLists.txt +++ b/oss-internship-2020/curl/CMakeLists.txt @@ -77,4 +77,4 @@ target_include_directories(curl_sapi INTERFACE # add examples -add_subdirectory(examples) \ No newline at end of file +add_subdirectory(examples) diff --git a/oss-internship-2020/curl/custom_curl/CMakeLists.txt b/oss-internship-2020/curl/custom_curl/CMakeLists.txt index 4da372c..5ee62b3 100644 --- a/oss-internship-2020/curl/custom_curl/CMakeLists.txt +++ b/oss-internship-2020/curl/custom_curl/CMakeLists.txt @@ -30,4 +30,4 @@ set_target_properties(custom_curl target_link_libraries(custom_curl CURL::libcurl -) \ No newline at end of file +) diff --git a/oss-internship-2020/curl/custom_curl/custom_curl.cc b/oss-internship-2020/curl/custom_curl/custom_curl.cc index 3df5ed3..fa63a26 100644 --- a/oss-internship-2020/curl/custom_curl/custom_curl.cc +++ b/oss-internship-2020/curl/custom_curl/custom_curl.cc @@ -30,4 +30,4 @@ CURLcode curl_easy_setopt_curl_off_t(CURL* handle, CURLoption option, curl_off_t CURLcode curl_easy_getinfo_ptr(CURL* handle, CURLINFO option, void* parameter) { return curl_easy_getinfo(handle, option, parameter); -} \ No newline at end of file +} diff --git a/oss-internship-2020/curl/custom_curl/custom_curl.h b/oss-internship-2020/curl/custom_curl/custom_curl.h index ad9cf02..0576441 100644 --- a/oss-internship-2020/curl/custom_curl/custom_curl.h +++ b/oss-internship-2020/curl/custom_curl/custom_curl.h @@ -29,4 +29,4 @@ extern "C" CURLcode curl_easy_setopt_curl_off_t(CURL *handle, CURLoption option, extern "C" CURLcode curl_easy_getinfo_ptr(CURL *handle, CURLINFO option, void* parameter); -#endif // CUSTOM_CURL_H \ No newline at end of file +#endif // CUSTOM_CURL_H diff --git a/oss-internship-2020/curl/examples/CMakeLists.txt b/oss-internship-2020/curl/examples/CMakeLists.txt index a41ef47..c472568 100644 --- a/oss-internship-2020/curl/examples/CMakeLists.txt +++ b/oss-internship-2020/curl/examples/CMakeLists.txt @@ -21,4 +21,4 @@ add_executable(example1 target_link_libraries(example1 PRIVATE curl_sapi sapi::sapi -) \ No newline at end of file +) diff --git a/oss-internship-2020/curl/examples/example1.cc b/oss-internship-2020/curl/examples/example1.cc index 2365c26..3e3feca 100644 --- a/oss-internship-2020/curl/examples/example1.cc +++ b/oss-internship-2020/curl/examples/example1.cc @@ -75,4 +75,3 @@ int main(int argc, char* argv[]) { assert(status_cleanup.ok()); } -