[Lldb-commits] [lldb] r113901 - /lldb/trunk/test/class_types/main.cpp

Johnny Chen johnny.chen at apple.com
Tue Sep 14 16:49:44 PDT 2010


Author: johnny
Date: Tue Sep 14 18:49:44 2010
New Revision: 113901

URL: http://llvm.org/viewvc/llvm-project?rev=113901&view=rev
Log:
Updated to add a printf() stmt.

Modified:
    lldb/trunk/test/class_types/main.cpp

Modified: lldb/trunk/test/class_types/main.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/class_types/main.cpp?rev=113901&r1=113900&r2=113901&view=diff
==============================================================================
--- lldb/trunk/test/class_types/main.cpp (original)
+++ lldb/trunk/test/class_types/main.cpp Tue Sep 14 18:49:44 2010
@@ -66,7 +66,7 @@
     int m_b_int;
 };
 
-
+#include <cstdio>
 class C : public B
 {
 public:
@@ -74,6 +74,7 @@
         B(ai, bi),
         m_c_int(ci)
     {
+        printf("Within C::ctor() m_c_int=%d\n", m_c_int);
     }
 
     //virtual





More information about the lldb-commits mailing list