+ code fix

This commit is contained in:
kelson42 2012-09-04 05:33:37 +00:00
parent f48f059d99
commit ebd9ee6c01
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ namespace kiwix {
/* Insert the stopwords */
if (!this->stopWords.empty()) {
typename std::vector<std::string>::iterator it = this->stopWords.begin();
std::vector<std::string>::iterator it = this->stopWords.begin();
for( ; it != this->stopWords.end(); ++it) {
this->stopper.add(*it);
}