Commit e6a151e7 authored by Davis King's avatar Davis King

Another minor change to avoid a bug in visual studio 2005.

parent c5f064c8
......@@ -70,6 +70,14 @@ namespace dlib
{
}
rectangle (
const point& p1,
const point& p2
)
{
*this = rectangle(p1) + rectangle(p2);
}
template <typename T>
rectangle (
const vector<T,2>& p1,
......
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