Minor change to avoid warning in GCC with max warning level.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403271
This commit is contained in:
Davis King 2009-11-14 17:36:48 +00:00
parent 4b1f025fec
commit 0758897909

View File

@ -1089,7 +1089,7 @@ namespace dlib
matrix ( matrix (
const matrix& m const matrix& m
) ) : matrix_exp<matrix>(*this)
{ {
data.set_size(m.nr(),m.nc()); data.set_size(m.nr(),m.nc());
matrix_assign(*this, m); matrix_assign(*this, m);
@ -1490,7 +1490,7 @@ namespace dlib
template <typename U> template <typename U>
bool aliases ( bool aliases (
const matrix_exp<U>& item const matrix_exp<U>&
) const { return false; } ) const { return false; }
bool aliases ( bool aliases (