From 0720ea63ad54a9d9012aedb6a4fd5c16c7adb392 Mon Sep 17 00:00:00 2001 From: Thijs Withaar Date: Sat, 27 Feb 2021 10:35:42 +0100 Subject: [PATCH] Fix a few warnings --- blasfeo_hp_pm/s_lapack_lib8.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/blasfeo_hp_pm/s_lapack_lib8.c b/blasfeo_hp_pm/s_lapack_lib8.c index f3c57cac..4ccb7e13 100644 --- a/blasfeo_hp_pm/s_lapack_lib8.c +++ b/blasfeo_hp_pm/s_lapack_lib8.c @@ -1112,7 +1112,7 @@ void blasfeo_sgetrf_rp(int m, int n, struct blasfeo_smat *sC, int ci, int cj, st int blasfeo_sgeqrf_worksize(int m, int n) { - blasfeo_hp_sgeqrf_worksize(m, n); + return blasfeo_hp_sgeqrf_worksize(m, n); } @@ -1126,7 +1126,7 @@ void blasfeo_sgeqrf(int m, int n, struct blasfeo_smat *sC, int ci, int cj, struc int blasfeo_sgelqf_worksize(int m, int n) { - blasfeo_hp_sgelqf_worksize(m, n); + return blasfeo_hp_sgelqf_worksize(m, n); } @@ -1140,7 +1140,7 @@ void blasfeo_sgelqf(int m, int n, struct blasfeo_smat *sC, int ci, int cj, struc int blasfeo_sorglq_worksize(int m, int n, int k) { - blasfeo_hp_sorglq_worksize(m, n, k); + return blasfeo_hp_sorglq_worksize(m, n, k); }