You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by se...@apache.org on 2007/06/10 06:43:23 UTC

svn commit: r545843 - /incubator/stdcxx/trunk/examples/tutorial/out/dynatype.out

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  <se...@roguewave.com>

	* 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