Add new file-variable 'comment-column'
[senf.git] / Packets / Packet.cc
index 9b1d68a..0ca3321 100644 (file)
@@ -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: