Skip to content

Commit

Permalink
Fix compiler error on Visual Studio
Browse files Browse the repository at this point in the history
  • Loading branch information
nneonneo committed Feb 24, 2015
1 parent d1793eb commit afc7b89
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/ferns/template_matching_based_tracker.cc
Expand Up @@ -21,6 +21,12 @@
Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <fstream>

#if _MSC_VER
#include <float.h>
#define finite _finite
#endif

using namespace std;

#include "homography_estimator.h"
Expand Down

0 comments on commit afc7b89

Please sign in to comment.