From a23f0c9fa7f5b80bad59bf5481ec1a7a79358124 Mon Sep 17 00:00:00 2001 From: Yuri Gorshenin Date: Thu, 3 Mar 2016 12:49:57 +0300 Subject: [PATCH] Review fixes. --- search/feature_offset_match.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/search/feature_offset_match.hpp b/search/feature_offset_match.hpp index cf5fbaefa1..232bec7b7e 100644 --- a/search/feature_offset_match.hpp +++ b/search/feature_offset_match.hpp @@ -111,7 +111,7 @@ void FullMatchInTrie(trie::Iterator> const & trieRoot, strings::UniString s, TF & f) { if (!CheckMatchString(rootPrefix, rootPrefixSize, s, false /* prefix */)) - return; + return; size_t symbolsMatched = 0; bool bFullEdgeMatched; @@ -126,7 +126,7 @@ void FullMatchInTrie(trie::Iterator> const & trieRoot, threads::MutexGuard dummyG(dummyM); #endif - ASSERT_EQUAL ( symbolsMatched, s.size(), () ); + ASSERT_EQUAL(symbolsMatched, s.size(), ()); it->m_valueList.ForEach(f); } @@ -137,7 +137,7 @@ void PrefixMatchInTrie(trie::Iterator> const & trieRoot, strings::UniString s, TF & f) { if (!CheckMatchString(rootPrefix, rootPrefixSize, s, true /* prefix */)) - return; + return; using TIterator = trie::Iterator>;