mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
fix windows build
This commit is contained in:
parent
ca6dea8cbc
commit
d11a545d3f
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user