X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Packets%2FPacket.cc;h=0ca332195ca02536d1832d58a614cb175c0c5497;hb=145f6a7d0f3a6aaa77b3625351c952d24cb0b8a1;hp=9b1d68aa6aebf94e79f314cb4cc5406c15de799e;hpb=85ab07d100a382467a42e19d741d403a7a96c951;p=senf.git diff --git a/Packets/Packet.cc b/Packets/Packet.cc index 9b1d68a..0ca3321 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,6 @@ 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" +// comment-column: 40 // End: