Skip to content

Commit

Permalink
Adapt to the update of array-hash subtree.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tessil committed May 7, 2017
1 parent e54889d commit ed13ae7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/htrie_hash.h
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,9 @@ class htrie_hash {
private:
using array_hash = typename std::conditional<
has_value<T>::value,
tsl::array_map<CharT, T, Hash, std::char_traits<CharT>, false,
tsl::array_map<CharT, T, Hash, tsl::str_equal<CharT>, false,
KeySizeT, std::uint16_t, tsl::power_of_two_growth_policy<4>>,
tsl::array_set<CharT, Hash, std::char_traits<CharT>, false,
tsl::array_set<CharT, Hash, tsl::str_equal<CharT>, false,
KeySizeT, std::uint16_t, tsl::power_of_two_growth_policy<4>>>::type;

private:
Expand Down

0 comments on commit ed13ae7

Please sign in to comment.