Skip to content

Commit

Permalink
Fix a compiler warning openMVG#1064
Browse files Browse the repository at this point in the history
  • Loading branch information
pmoulon committed Oct 13, 2017
1 parent 6bad7df commit a2bbb61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/openMVG/matching/metric_hamming.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ struct Hamming
const ElementType * pb = reinterpret_cast<const ElementType*> (b);
return popcntLoop(pa, pb, size);
}
return {0};
return 0;
}
};

Expand Down

0 comments on commit a2bbb61

Please sign in to comment.