From 776e00e6bcbef1c1ccdff239fefa7312a04cddab Mon Sep 17 00:00:00 2001 From: vng Date: Wed, 16 Sep 2015 14:41:41 +0300 Subject: [PATCH] [search] Fixed dummy bug with types. --- search/intermediate_result.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/search/intermediate_result.cpp b/search/intermediate_result.cpp index 00081df998..9cbbf681c9 100644 --- a/search/intermediate_result.cpp +++ b/search/intermediate_result.cpp @@ -191,7 +191,7 @@ namespace bool IsSkip(uint32_t type) const { - for (uint8_t t : m_types) + for (uint32_t t : m_types) { if (t == type) return true;