opt:replace std::vector push_back with emplace_back

This commit is contained in:
Xiao YiFang 2022-08-09 20:35:52 +08:00
parent 74c0da034b
commit c448f56f2b

View file

@ -835,7 +835,7 @@ vector< WordArticleLink > BtreeIndex::readChain( char const * & ptr )
ptr += sizeof( uint32_t );
result.push_back( WordArticleLink( str, articleOffset, prefix ) );
result.emplace_back(str, articleOffset, prefix);
if ( chainSize < str.size() + 1 + prefix.size() + 1 + sizeof( uint32_t ) )
throw exCorruptedChainData();
@ -1100,7 +1100,7 @@ void IndexedWords::addWord( wstring const & word, uint32_t articleOffset, unsign
string utfWord=Utf8::encode( wstring(wordBegin, wordSize )) ;
string utfPrefix;
i->second.push_back( WordArticleLink( utfWord, articleOffset, utfPrefix ) );
i->second.emplace_back(utfWord, articleOffset, utfPrefix);
}
}
return;
@ -1121,7 +1121,7 @@ void IndexedWords::addWord( wstring const & word, uint32_t articleOffset, unsign
string utfPrefix = Utf8::encode( wstring( wordBegin, nextChar - wordBegin ) );
i->second.push_back( WordArticleLink( utfWord, articleOffset, utfPrefix ) );
i->second.emplace_back(utfWord, articleOffset, utfPrefix);
}
wordsAdded += 1;
@ -1143,8 +1143,7 @@ void IndexedWords::addSingleWord( wstring const & word, uint32_t articleOffset )
wstring folded = Folding::apply( word );
if( folded.empty() )
folded = Folding::applyWhitespaceOnly( word );
operator []( Utf8::encode( folded ) ).push_back(
WordArticleLink( Utf8::encode( word ), articleOffset ) );
operator []( Utf8::encode( folded ) ).emplace_back(Utf8::encode( word ), articleOffset);
}
IndexInfo buildIndex( IndexedWords const & indexedWords, File::Class & file )