mirror of https://github.com/kiwix/libkiwix.git
+ code fix
This commit is contained in:
parent
f48f059d99
commit
ebd9ee6c01
|
@ -35,7 +35,7 @@ namespace kiwix {
|
||||||
|
|
||||||
/* Insert the stopwords */
|
/* Insert the stopwords */
|
||||||
if (!this->stopWords.empty()) {
|
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) {
|
for( ; it != this->stopWords.end(); ++it) {
|
||||||
this->stopper.add(*it);
|
this->stopper.add(*it);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue