fix windows build

This commit is contained in:
Thomas Fussell 2016-03-07 13:28:52 +08:00
parent ca6dea8cbc
commit d11a545d3f

View File

@ -58,4 +58,10 @@ bool worksheet_iterator::operator==(const worksheet_iterator &comparand) const
return index_ == comparand.index_ && wb_ == comparand.wb_;
}
worksheet_iterator &worksheet_iterator::operator=(const worksheet_iterator &other)
{
index_ = other.index_;
return *this;
}
} // namespace xlnt