Return-Path: Delivered-To: apmail-incubator-stdcxx-commits-archive@www.apache.org Received: (qmail 82140 invoked from network); 10 Jun 2007 04:43:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 10 Jun 2007 04:43:44 -0000 Received: (qmail 76250 invoked by uid 500); 10 Jun 2007 04:43:48 -0000 Delivered-To: apmail-incubator-stdcxx-commits-archive@incubator.apache.org Received: (qmail 76232 invoked by uid 500); 10 Jun 2007 04:43:48 -0000 Mailing-List: contact stdcxx-commits-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-commits@incubator.apache.org Received: (qmail 76219 invoked by uid 99); 10 Jun 2007 04:43:48 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 09 Jun 2007 21:43:48 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 09 Jun 2007 21:43:44 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id E6A321A981A; Sat, 9 Jun 2007 21:43:23 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r545843 - /incubator/stdcxx/trunk/examples/tutorial/out/dynatype.out Date: Sun, 10 Jun 2007 04:43:23 -0000 To: stdcxx-commits@incubator.apache.org From: sebor@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070610044323.E6A321A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sebor Date: Sat Jun 9 21:43:23 2007 New Revision: 545843 URL: http://svn.apache.org/viewvc?view=rev&rev=545843 Log: 2007-06-09 Martin Sebor * dynatype.out: Expected output of tutorial/dynatype.cpp. Added: incubator/stdcxx/trunk/examples/tutorial/out/dynatype.out Added: incubator/stdcxx/trunk/examples/tutorial/out/dynatype.out URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/examples/tutorial/out/dynatype.out?view=auto&rev=545843 ============================================================================== --- incubator/stdcxx/trunk/examples/tutorial/out/dynatype.out (added) +++ incubator/stdcxx/trunk/examples/tutorial/out/dynatype.out Sat Jun 9 21:43:23 2007 @@ -0,0 +1,6 @@ +dynatype v1 = 1 +int (v1) = 1 +double (v1 = 3.14) = 3.14 +double (v2 = v1) = 3.14 +(const char*)(v2 = "abc") = abc +(const char*)(v1 = v2) = abc