Skip to content

Commit

Permalink
Merge pull request simonfuhrmann#212 from andre-schulz/fix-cashash-on-vs
Browse files Browse the repository at this point in the history
SFM: Fix compilation of cascade hash matcher on Visual Studio
  • Loading branch information
simonfuhrmann committed Mar 19, 2016
2 parents 66911fa + afc9632 commit 096cc31
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion libs/sfm/cascade_hashing.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@
#include <iostream>
#include <random>

#include <popcntintrin.h>
#ifdef _MSC_VER
# include <nmmintrin.h>
#else
# include <popcntintrin.h>
#endif

#include "math/vector.h"
#include "sfm/defines.h"
Expand Down

0 comments on commit 096cc31

Please sign in to comment.