Commit 419eebc8 authored by Davis King's avatar Davis King

Changed to avoid compiler error in visual studio 2005

parent e4cd58aa
...@@ -75,7 +75,7 @@ namespace dlib ...@@ -75,7 +75,7 @@ namespace dlib
// figure out what the offset values should be // figure out what the offset values should be
for (int itr = 0; itr < offset.size(); ++itr) for (int itr = 0; itr < offset.size(); ++itr)
{ {
counts.assign(std::pow(2,bits), 0); counts.assign(std::pow(2.0,bits), 0);
// count the popularity of each hash value // count the popularity of each hash value
for (unsigned long i = 0; i < h.size(); ++i) for (unsigned long i = 0; i < h.size(); ++i)
{ {
......
...@@ -44,7 +44,7 @@ namespace dlib ...@@ -44,7 +44,7 @@ namespace dlib
unsigned long num_hash_bins ( unsigned long num_hash_bins (
) const ) const
{ {
return static_cast<unsigned long>(std::pow(2, offset.size())); return static_cast<unsigned long>(std::pow(2.0, offset.size()));
} }
template <typename EXP> template <typename EXP>
......
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