Commit 159c2bbe authored by Davis King's avatar Davis King

Fixed missing std:: compiler error.

parent 32652774
......@@ -1362,8 +1362,8 @@ namespace dlib
double angle
)
{
const double ca = cos(angle);
const double sa = sin(angle);
const double ca = std::cos(angle);
const double sa = std::sin(angle);
matrix<double,2,2> m;
m = ca, -sa,
......
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