Skip to content
Snippets Groups Projects
Commit deb87782 authored by Paweł Kędzia's avatar Paweł Kędzia
Browse files

fixed next_document

parent fe2d2bd6
Branches
No related merge requests found
......@@ -50,17 +50,20 @@ public:
/// Next document in corpus
boost::shared_ptr<Document> next_document() {
static boost::shared_ptr<Document> _empty_doc_ptr;
if (!this->set_) {
if (this->documents_.size() == 0) {
boost::shared_ptr<Document> tmp;
return tmp;
}
else {
this->set_ = true;
this->current_document_ = documents_.begin();
return _empty_doc_ptr;
}
this->set_ = true;
this->current_document_ = documents_.begin();
}
else {
if (current_document_ == documents_.end()) {
return _empty_doc_ptr;
}
current_document_++;
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment