small typo in callbacks chapter

This commit is contained in:
Tom Henderson
2012-03-19 10:42:21 -07:00
parent c1f856562b
commit 0119cec1dc

View File

@@ -239,7 +239,7 @@ Here is an example of the usage::
class A
{
public:
A (int ao) : a (a0) {}
A (int a0) : a (a0) {}
int Hello (int b0)
{
std::cout << "Hello from A, a = " << a << " b0 = " << b0 << std::endl;