add missing std:: qualifiers
This commit is contained in:
parent
270845e155
commit
50b9194885
@ -17,6 +17,9 @@
|
|||||||
#ifndef _TERMPROC_H_INCLUDED_
|
#ifndef _TERMPROC_H_INCLUDED_
|
||||||
#define _TERMPROC_H_INCLUDED_
|
#define _TERMPROC_H_INCLUDED_
|
||||||
|
|
||||||
|
#include <vector>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
#include "textsplit.h"
|
#include "textsplit.h"
|
||||||
#include "stoplist.h"
|
#include "stoplist.h"
|
||||||
#include "smallut.h"
|
#include "smallut.h"
|
||||||
@ -164,9 +167,9 @@ public:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (hasspace) {
|
if (hasspace) {
|
||||||
vector<string> terms;
|
std::vector<std::string> terms;
|
||||||
stringToTokens(otrm, terms, " ", true);
|
stringToTokens(otrm, terms, " ", true);
|
||||||
for (vector<string>::const_iterator it = terms.begin();
|
for (std::vector<std::string>::const_iterator it = terms.begin();
|
||||||
it < terms.end(); it++) {
|
it < terms.end(); it++) {
|
||||||
if (!TermProc::takeword(*it, pos, bs, be)) {
|
if (!TermProc::takeword(*it, pos, bs, be)) {
|
||||||
return false;
|
return false;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user