X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Packets%2FPacket.cc;h=b1b2e17962f1f9bea1c2cef8ee4b4b00b758c399;hb=9357448dc66bc9acfd3bd8db423deb75bcd6a2c4;hp=9b1d68aa6aebf94e79f314cb4cc5406c15de799e;hpb=85ab07d100a382467a42e19d741d403a7a96c951;p=senf.git diff --git a/Packets/Packet.cc b/Packets/Packet.cc index 9b1d68a..b1b2e17 100644 --- a/Packets/Packet.cc +++ b/Packets/Packet.cc @@ -270,7 +270,7 @@ prefix_ void senf::Packet::erase(iterator first, iterator last) size_type index(first-impl_->data_.begin()); size_type sz(last-first); BOOST_ASSERT( index >= begin_ && index < end_ && sz <= end_-index ); - /** \fixme Here we should assert, that no bytes belonging to the + /** \todo Here we should assert, that no bytes belonging to the next iterator are deleted ... */ impl_->data_.erase(first,last); impl_->updateIterators(index,-sz,self_,INSIDE);