Return-Path: Delivered-To: apmail-stdcxx-dev-archive@www.apache.org Received: (qmail 43191 invoked from network); 2 Jul 2008 21:37:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 2 Jul 2008 21:37:53 -0000 Received: (qmail 90751 invoked by uid 500); 2 Jul 2008 21:37:54 -0000 Delivered-To: apmail-stdcxx-dev-archive@stdcxx.apache.org Received: (qmail 90734 invoked by uid 500); 2 Jul 2008 21:37:54 -0000 Mailing-List: contact dev-help@stdcxx.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@stdcxx.apache.org Delivered-To: mailing list dev@stdcxx.apache.org Received: (qmail 90723 invoked by uid 99); 2 Jul 2008 21:37:54 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 02 Jul 2008 14:37:54 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [208.30.140.160] (HELO moroha.roguewave.com) (208.30.140.160) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 02 Jul 2008 21:37:03 +0000 Received: from exchmail01.Blue.Roguewave.Com (exchmail01.blue.roguewave.com [10.22.129.22]) by moroha.roguewave.com (8.13.6/8.13.6) with ESMTP id m62LZNXt027397 for ; Wed, 2 Jul 2008 21:35:23 GMT X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: RE: Tuple status Date: Wed, 2 Jul 2008 15:34:36 -0600 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Tuple status Thread-Index: AcjcAccbJyreZ91RTbOG9k2RLMsiUAAiabqg References: <486B0D2D.4090500@roguewave.com> From: "Eric Lemings" To: X-Virus-Checked: Checked by ClamAV on apache.org =20 > -----Original Message----- > From: Martin Sebor [mailto:msebor@gmail.com] On Behalf Of Martin Sebor > Sent: Tuesday, July 01, 2008 11:08 PM > To: dev@stdcxx.apache.org > Subject: Re: Tuple status >=20 ... >=20 > c) in ctor initializer lists spanning multiple lines, please > avoid dropping the colon or the comma; i.e., >=20 > struct A: Base { > int _C_i; > A (int i): Base (), _C_i (i) { /* empty */ } >=20 > or (for long initializer lists): >=20 > A (int i): > Base (very_long_sequence_of_arguments), > _C_i (i) { > // empty > } >=20 Not the comma but I do see the colon being dropped on a newline in $SRCDIR/include/vector for example. Brad.