Commit 43354beb authored by Davis King's avatar Davis King

Fixed compiler error in visual studio 7.1

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%402904
parent 7ac39721
......@@ -1610,7 +1610,7 @@ namespace dlib
T operator() (
long,
long c
) const { return std::pow(10,start + c*inc); }
) const { return std::pow((T)10,start + c*inc); }
T operator() (
long c
......
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