remove some dead code

This commit is contained in:
greg
2019-03-30 20:35:52 -04:00
parent 2b41b843b3
commit d0c2c9a2d2
2 changed files with 1 additions and 11 deletions
+1 -2
View File
@@ -460,8 +460,7 @@ namespace type_traits_internal {
struct IsHashable : std::false_type {};
template <typename Key>
struct IsHashable<
Key,
struct IsHashable<Key,
phmap::enable_if_t<std::is_convertible<
decltype(std::declval<std::hash<Key>&>()(std::declval<Key const&>())),
std::size_t>::value>> : std::true_type {};