Updated to add a printf() stmt.

llvm-svn: 113901
This commit is contained in:
Johnny Chen 2010-09-14 23:49:44 +00:00
parent d0b89f8cc2
commit 32a7044a84
1 changed files with 2 additions and 1 deletions

View File

@ -66,7 +66,7 @@ protected:
int m_b_int;
};
#include <cstdio>
class C : public B
{
public:
@ -74,6 +74,7 @@ public:
B(ai, bi),
m_c_int(ci)
{
printf("Within C::ctor() m_c_int=%d\n", m_c_int);
}
//virtual