X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Packets%2FPacket.cc;h=cbb824a603d432c73edaf4f180aa1f3cd82e8dbb;hb=31d85cd6b8e03c5ecc924ca8892906be1bab702f;hp=9b1d68aa6aebf94e79f314cb4cc5406c15de799e;hpb=85ab07d100a382467a42e19d741d403a7a96c951;p=senf.git diff --git a/Packets/Packet.cc b/Packets/Packet.cc index 9b1d68a..cbb824a 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); @@ -295,4 +295,5 @@ prefix_ void senf::Packet::dump(std::ostream & os) // c-file-style: "senf" // indent-tabs-mode: nil // ispell-local-dictionary: "american" +// compile-command: "scons -u test" // End: