node tests pass

This commit is contained in:
greg
2019-03-24 18:27:01 -04:00
parent ddebdfbcdc
commit 3a0ecd80f8
+1 -1
View File
@@ -47,7 +47,7 @@ template <class T> T phmap_max(T a, T b) { return a >= b ? a : b; }
template <class T>
struct Hash
{
inline size_t operator()(const T& __v) noexcept
inline size_t operator()(const T& __v) const
{
return PHMAP_HASH_CLASS<T>()(__v);
}