Skip to content

Commit

Permalink
Use the same template argument names for Hash_Map definition.
Browse files Browse the repository at this point in the history
  • Loading branch information
pmoulon committed Jul 17, 2018
1 parent 895c295 commit 6148832
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/openMVG/types.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ using Hash_Map = std::unordered_map<Key, Value>;
* @tparam K type of the keys
* @tparam V type of the values
*/
template<typename K, typename V>
using Hash_Map = std::map<K, V, std::less<K>,
Eigen::aligned_allocator<std::pair<const K, V>>>;
template<typename Key, typename Value>
using Hash_Map = std::map<Key, Value, std::less<Key>,
Eigen::aligned_allocator<std::pair<const Key, Value>>>;

#endif // OPENMVG_STD_UNORDERED_MAP

Expand Down

0 comments on commit 6148832

Please sign in to comment.