Skip to content

Commit

Permalink
Fix a few warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ThijsWithaar committed Feb 27, 2021
1 parent 68864a2 commit 0720ea6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions blasfeo_hp_pm/s_lapack_lib8.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}


Expand All @@ -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);
}


Expand All @@ -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);
}


Expand Down

0 comments on commit 0720ea6

Please sign in to comment.