X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Packets%2FParseVec.ct;h=6ef4055edb91451dd94086acf24f8dcafa1eeb1e;hb=8421c3a8da7485cb8781045494ecaab3ed84f403;hp=b8368abfc5305941487a40da71c0eee588a61ca7;hpb=032707d24b1059febe83ce56b11fd79df106c6e2;p=senf.git diff --git a/Packets/ParseVec.ct b/Packets/ParseVec.ct index b8368ab..6ef4055 100644 --- a/Packets/ParseVec.ct +++ b/Packets/ParseVec.ct @@ -1,6 +1,6 @@ // $Id$ // -// Copyright (C) 2006 +// Copyright (C) 2006 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS) // Kompetenzzentrum fuer Satelitenkommunikation (SatCom) // Stefan Bund @@ -50,7 +50,7 @@ senf::Parse_Vector_wrapper::insert(iterator pos, size_type ix(pos.raw()-container_.begin()); shift(pos,n); typename Container::iterator j (container_.begin()+ix); - for (; n; --n, j+=Parser::bytes()) + for (; n; --n, j+=Parser::bytes()) Parser(j).value(t); } @@ -61,9 +61,9 @@ senf::Parse_Vector_wrapper::insert(iterator pos, InputIterator f, InputIterator l) { - /** \fixme This might be horribly inefficient ... we need to - specialize for random_access and forward iterators, where we - can count the distance */ + /** \todo This might be horribly inefficient ... we need to + specialize for random_access and forward iterators, where we + can count the distance */ size_type ix(pos.raw()-container_.begin()); for (;f!=l;++f) { @@ -78,5 +78,8 @@ senf::Parse_Vector_wrapper::insert(iterator pos, // Local Variables: // mode: c++ +// fill-column: 100 // c-file-style: "senf" +// indent-tabs-mode: nil +// ispell-local-dictionary: "american" // End: