Remove dead comment

This commit is contained in:
Richard Kimberly Heck 2020-11-06 11:30:02 -05:00
parent 5bd498c56d
commit 97ecf71016
3 changed files with 5 additions and 6 deletions

View File

@ -3726,7 +3726,6 @@ void Buffer::Impl::updateMacros(DocIterator & it, DocIterator & scope)
while (it.pit() <= lastpit) {
Paragraph & par = it.paragraph();
// FIXME Can this be done with the new-style iterators?
// iterate over the insets of the current paragraph
for (auto const & insit : par.insetList()) {
it.pos() = insit.pos;

View File

@ -134,14 +134,14 @@ ParagraphList const & ParConstIterator::plist() const
return text()->paragraphs();
}
#if 0
bool operator==(ParConstIterator const & iter1, ParConstIterator const & iter2)
{
// FIXME: this makes two full copies!
return DocIterator(iter1) == DocIterator(iter2);
DocIterator const * dit1 = &iter1;
DocIterator const * dit2 = &iter2;
return *dit1 == *dit2;
}
#if 0
bool operator!=(ParConstIterator const & iter1, ParConstIterator const & iter2)
{
return !(iter1 == iter2);

View File

@ -115,7 +115,7 @@ public:
ParagraphList const & plist() const;
};
//bool operator==(ParConstIterator const & it1, ParConstIterator const & it2);
bool operator==(ParConstIterator const & it1, ParConstIterator const & it2);
//bool operator!=(ParConstIterator const & it1, ParConstIterator const & it2);