Commit 7a59836f authored by Davis King's avatar Davis King

Changed to avoid warning in visual studio.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%402765
parent c596cebb
......@@ -226,7 +226,7 @@ namespace dlib
const T* B = &src.rhs(0,0);
const int ldb = src.rhs.nc();
const T beta = add_to?1:0;
const T beta = static_cast<T>(add_to?1:0);
T* C = &dest(0,0);
const int ldc = src.nc();
......@@ -248,7 +248,7 @@ namespace dlib
const T* B = &src.rhs(0,0);
const int ldb = src.rhs.nc();
const T beta = add_to?1:0;
const T beta = static_cast<T>(add_to?1:0);
T* C = &dest(0,0);
const int ldc = src.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