> -----Original Message----- > From: Martin Sebor [mailto:[EMAIL PROTECTED] On Behalf Of Martin Sebor > Sent: Tuesday, July 01, 2008 11:08 PM > To: [email protected] > Subject: Re: Tuple status > ... > > c) in ctor initializer lists spanning multiple lines, please > avoid dropping the colon or the comma; i.e., > > struct A: Base { > int _C_i; > A (int i): Base (), _C_i (i) { /* empty */ } > > or (for long initializer lists): > > A (int i): > Base (very_long_sequence_of_arguments), > _C_i (i) { > // empty > } >
Not the comma but I do see the colon being dropped on a newline in $SRCDIR/include/vector for example. Brad.
