
3 Jan
2010
3 Jan
'10
10:21 a.m.
Michael a écrit :
hi all,
here's a first patch:
it was generated using the command 'svn diff > ../boost.diff"
questions on the formatting of new code (conforming standards used at gdb-patches@gnu.org):
1) can lines exceed the 80 character limit? 2) should standard indentation be taken as 2 or 4 white spaces?
the attachment can be applied as such.
- if (size > 0) - s << v () (0); + if (size > 0) s << v () (0); Not an improvement in readability to me, on the contrary. - for (size_type i = 1; i < size; ++ i) - s << ',' << v () (i); - s << ')'; + for (size_type i = 1; i < size; ++ i) + { + s << ',' << v () (i); + s << ')'; + } + You changed the code here...