Fixed whitespace in all files (no tabs)
[senf.git] / Packets / ParseVec.ct
index b8368ab..4f20fad 100644 (file)
@@ -1,6 +1,6 @@
 // $Id$
 //
-// Copyright (C) 2006 
+// Copyright (C) 2006
 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
 //     Stefan Bund <stefan.bund@fokus.fraunhofer.de>
@@ -50,7 +50,7 @@ senf::Parse_Vector_wrapper<Parser,SizeParser,Container>::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);
 }
 
@@ -62,8 +62,8 @@ senf::Parse_Vector_wrapper<Parser,SizeParser,Container>::insert(iterator pos,
                                                                        InputIterator l)
 {
     /** \fixme This might be horribly inefficient ... we need to
-       specialize for random_access and forward iterators, where we
-       can count the distance */
+        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<Parser,SizeParser,Container>::insert(iterator pos,
 \f
 // Local Variables:
 // mode: c++
+// fill-column: 100
 // c-file-style: "senf"
+// indent-tabs-mode: nil
+// ispell-local-dictionary: "american"
 // End: