From b4386d57dae693edab0c38b321653693e7ba64d0 Mon Sep 17 00:00:00 2001 From: jcej Date: Wed, 3 Feb 1999 02:58:08 +0000 Subject: *** empty log message *** --- docs/tutorials/007/page05.html | 2 +- docs/tutorials/007/page07.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/tutorials') diff --git a/docs/tutorials/007/page05.html b/docs/tutorials/007/page05.html index a416cb32505..2a62b00a0a2 100644 --- a/docs/tutorials/007/page05.html +++ b/docs/tutorials/007/page05.html @@ -147,7 +147,7 @@ protected: /* And since you shouldn't access a member variable directly, neither should you set (mutate) it. Although it might seem silly to do it this way, you'll thank yourself for it later. */ - void client_acceptor (Client_Acceptor *client_acceptor) + void client_acceptor (Client_Acceptor *_client_acceptor) { this->client_acceptor_ = _client_acceptor; } diff --git a/docs/tutorials/007/page07.html b/docs/tutorials/007/page07.html index 6da001738a2..0364eccd176 100644 --- a/docs/tutorials/007/page07.html +++ b/docs/tutorials/007/page07.html @@ -63,7 +63,7 @@ public: /* Opening the thread pool causes one or more threads to be activated. When activated, they all execute the svc() method declared below. */ - int open (int pool_size = default_pool_size); + int open (int pool_size = default_pool_size_); /* Some compilers will complain that our open() above attempts to override a virtual function in the baseclass. We have no -- cgit v1.2.1