From 3b2852805d09e7547d7cc05b7697918d97c72ab6 Mon Sep 17 00:00:00 2001 From: greg Date: Tue, 9 Jul 2019 23:06:27 -0400 Subject: [PATCH] fix warning --- README.md | 2 +- parallel_hashmap/phmap.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e64334b..5ba0e05 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ This repository aims to provide an set of excellent hash map implementations, wi - Automatic support for **boost's hash_value()** method for providing the hash function (see `examples/hash_value.h`). -- **natvis** visualization support in Visual Studio +- **natvis** visualization support in Visual Studio. ## Fast *and* memory friendly diff --git a/parallel_hashmap/phmap.h b/parallel_hashmap/phmap.h index ce6a7da..2afdc4f 100644 --- a/parallel_hashmap/phmap.h +++ b/parallel_hashmap/phmap.h @@ -325,7 +325,7 @@ struct GroupSse2Impl return BitMask( _mm_movemask_epi8(_mm_sign_epi8(ctrl, ctrl))); #else - return Match(kEmpty); + return Match(static_cast(kEmpty)); #endif }