Return-Path: Delivered-To: apmail-incubator-stdcxx-dev-archive@www.apache.org Received: (qmail 80287 invoked from network); 25 Jul 2006 16:58:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 25 Jul 2006 16:58:35 -0000 Received: (qmail 748 invoked by uid 500); 25 Jul 2006 16:58:35 -0000 Delivered-To: apmail-incubator-stdcxx-dev-archive@incubator.apache.org Received: (qmail 696 invoked by uid 500); 25 Jul 2006 16:58:35 -0000 Mailing-List: contact stdcxx-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: stdcxx-dev@incubator.apache.org Delivered-To: mailing list stdcxx-dev@incubator.apache.org Received: (qmail 685 invoked by uid 99); 25 Jul 2006 16:58:35 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 25 Jul 2006 09:58:35 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_MESSAGE X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [208.30.140.160] (HELO moroha.quovadx.com) (208.30.140.160) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 25 Jul 2006 09:58:34 -0700 Received: from qxvcexch01.ad.quovadx.com (qxvcexch01.ad.quovadx.com [192.168.170.59]) by moroha.quovadx.com (8.13.6/8.13.4) with ESMTP id k6PGvqDA009668 for ; Tue, 25 Jul 2006 16:57:52 GMT X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C6B00B.84A88F65" Subject: ostream Date: Tue, 25 Jul 2006 10:58:14 -0600 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: ostream Thread-Index: Acav+Solt5gluewfQ/CIzK9wRY+LsQAEkCfw From: "Scott Zhong" To: X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------_=_NextPart_001_01C6B00B.84A88F65 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Hi Martin, =20 I'm trying to understand ostream, where is the basic_ostream& operator<< (short); (ostream, line 143) and basic_ostream& operator<< (int); (ostream, line 149) function implemented? The closest match is: Ostream, line 145:=20 basic_ostream& operator<< (unsigned short __val) { return *this << _RWSTD_STATIC_CAST (unsigned long, __val); } And Ostream, line 151: basic_ostream& operator<< (unsigned int __val) { return *this << _RWSTD_STATIC_CAST (unsigned long, __val); } =20 Thank you, =20 Yu (Scott) Zhong Consulting Engineer Rogue Wave Software, a Quovadxtm division scottz@roguewave.com ph: 303 545 3182 =20 ------_=_NextPart_001_01C6B00B.84A88F65--