Added missing const

This commit is contained in:
Davis King 2017-03-03 16:03:27 -05:00
parent 5ea4d11a7e
commit 42d6520cb2
2 changed files with 4 additions and 4 deletions

View File

@ -415,8 +415,8 @@ namespace dlib
const matrix_exp<EXP1>& _Q,
const matrix_exp<EXP2>& _b,
matrix<T,NR,NC,MM,L>& alpha,
matrix<T,NR,NC,MM,L>& lower,
matrix<T,NR,NC,MM,L>& upper,
const matrix<T,NR,NC,MM,L>& lower,
const matrix<T,NR,NC,MM,L>& upper,
T eps,
unsigned long max_iter
)

View File

@ -124,8 +124,8 @@ namespace dlib
const matrix_exp<EXP1>& Q,
const matrix_exp<EXP2>& b,
matrix<T,NR,NC,MM,L>& alpha,
matrix<T,NR,NC,MM,L>& lower,
matrix<T,NR,NC,MM,L>& upper,
const matrix<T,NR,NC,MM,L>& lower,
const matrix<T,NR,NC,MM,L>& upper,
T eps,
unsigned long max_iter
);