From 13c024bd9c8175899dd97265706a45c55dc54f2a Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Thu, 13 Aug 2015 10:38:12 +0100 Subject: [PATCH] Changed 2nd exists2 to exists3 in exists() --- bloom_filter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bloom_filter.h b/bloom_filter.h index b430f8a8..b25f075e 100644 --- a/bloom_filter.h +++ b/bloom_filter.h @@ -132,7 +132,7 @@ namespace etl // Do we have a third hash? if (!etl::is_same::value) { - exists2 = flags[get_hash(key)]; + exists3 = flags[get_hash(key)]; } return exists1 && exists2 && exists3;