diff options
author | jcej <jcej@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-02-03 02:58:08 +0000 |
---|---|---|
committer | jcej <jcej@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-02-03 02:58:08 +0000 |
commit | 462bb14166ade3deec070fa7b36798345573c2c5 (patch) | |
tree | d2f829d35f4698fee2005c9f66de9c42f9795563 /docs | |
parent | 0eb9591ea1cfb9a269324839670254126f89258e (diff) | |
download | ATCD-462bb14166ade3deec070fa7b36798345573c2c5.tar.gz |
*** empty log message ***
Diffstat (limited to 'docs')
-rw-r--r-- | docs/tutorials/007/page05.html | 2 | ||||
-rw-r--r-- | docs/tutorials/007/page07.html | 2 |
2 files changed, 2 insertions, 2 deletions
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: <font color=red>/* 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. */</font> - 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: <font color=red>/* Opening the thread pool causes one or more threads to be activated. When activated, they all execute the svc() method declared below. */</font> - int open (int pool_size = default_pool_size); + int open (int pool_size = default_pool_size_); <font color=red>/* Some compilers will complain that our open() above attempts to override a virtual function in the baseclass. We have no |