From 7947e3357c297ec87e9b68cc2ebc2a186295460c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Micha=C3=ABl=20El=20Kharroubi?=
 <michael.el-kharroubi@hesge.ch>
Date: Thu, 29 Feb 2024 10:43:01 +0100
Subject: [PATCH] Add new line at the end of examples to avoid nvc++ warning

---
 Examples/cuda_sum_vec.cu   | 2 +-
 Examples/future.cpp        | 2 +-
 Examples/parallel_sort.cpp | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Examples/cuda_sum_vec.cu b/Examples/cuda_sum_vec.cu
index a5dc39e..6da800a 100644
--- a/Examples/cuda_sum_vec.cu
+++ b/Examples/cuda_sum_vec.cu
@@ -80,4 +80,4 @@ int main() {
     cudaFree(dev_vec_a);
     cudaFree(dev_vec_b);
     cudaFree(dev_vec_c);
-}
\ No newline at end of file
+}
diff --git a/Examples/future.cpp b/Examples/future.cpp
index a532d55..57efe30 100644
--- a/Examples/future.cpp
+++ b/Examples/future.cpp
@@ -44,4 +44,4 @@ int main() {
     });
 
     std::cout << "\n";
-}
\ No newline at end of file
+}
diff --git a/Examples/parallel_sort.cpp b/Examples/parallel_sort.cpp
index b2f16b4..b3c3249 100644
--- a/Examples/parallel_sort.cpp
+++ b/Examples/parallel_sort.cpp
@@ -14,4 +14,4 @@ int main() {
                                 v.begin(), v.end(), v_sorted.begin());
 
     std::cout << is_sorted << std::endl;
-}
\ No newline at end of file
+}
-- 
GitLab