fixed linker error

This commit is contained in:
Davis King 2013-04-13 18:48:52 -04:00
parent d0e9239c02
commit 8bde794c64
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ namespace dlib
namespace impl namespace impl
{ {
bool matches_rect ( inline bool matches_rect (
const std::vector<rectangle>& rects, const std::vector<rectangle>& rects,
const rectangle& rect, const rectangle& rect,
const double eps const double eps
@ -33,7 +33,7 @@ namespace dlib
return false; return false;
} }
rectangle get_best_matching_rect ( inline rectangle get_best_matching_rect (
const std::vector<rectangle>& rects, const std::vector<rectangle>& rects,
const rectangle& rect const rectangle& rect
) )