Commit 003bbd70 authored by Davis King's avatar Davis King

Fixed typo in DLIB_ASSERT message.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403579
parent bc7898c0
......@@ -1816,7 +1816,7 @@ namespace dlib
COMPILE_TIME_ASSERT(EXP1::NC == EXP2::NC || EXP1::NC == 0 || EXP2::NC == 0);
DLIB_ASSERT(a.nr() == b.nr() &&
a.nc() == b.nc(),
"\tconst matrix_exp::type pointwise_multiply(const matrix_exp& a, const matrix_exp& b)"
"\tconst matrix_exp pointwise_multiply(const matrix_exp& a, const matrix_exp& b)"
<< "\n\tYou can only make a do a pointwise multiply with two equally sized matrices"
<< "\n\ta.nr(): " << a.nr()
<< "\n\ta.nc(): " << a.nc()
......@@ -1866,7 +1866,7 @@ namespace dlib
a.nc() == b.nc() &&
b.nr() == c.nr() &&
b.nc() == c.nc(),
"\tconst matrix_exp::type pointwise_multiply(a,b,c)"
"\tconst matrix_exp pointwise_multiply(a,b,c)"
<< "\n\tYou can only make a do a pointwise multiply between equally sized matrices"
<< "\n\ta.nr(): " << a.nr()
<< "\n\ta.nc(): " << a.nc()
......@@ -1925,7 +1925,7 @@ namespace dlib
b.nc() == c.nc() &&
c.nr() == d.nr() &&
c.nc() == d.nc(),
"\tconst matrix_exp::type pointwise_multiply(a,b,c,d)"
"\tconst matrix_exp pointwise_multiply(a,b,c,d)"
<< "\n\tYou can only make a do a pointwise multiply between equally sized matrices"
<< "\n\ta.nr(): " << a.nr()
<< "\n\ta.nc(): " << a.nc()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment