summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>1999-03-18 22:15:09 +0000
committerSteve Huston <shuston@riverace.com>1999-03-18 22:15:09 +0000
commite72a1dcc6b6cfdd9a19a1e35831e30699c3c4e10 (patch)
tree289a64d4d8948b851f5d43667d3c3300614b76d5 /docs
parenta3af281556c575da58fc137911038ebdce0c3b5a (diff)
downloadATCD-e72a1dcc6b6cfdd9a19a1e35831e30699c3c4e10.tar.gz
Fix initialization of concurrency_ in Thread_Pool& ctor.
Diffstat (limited to 'docs')
-rw-r--r--docs/tutorials/007/client_acceptor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorials/007/client_acceptor.cpp b/docs/tutorials/007/client_acceptor.cpp
index 16b707a505f..14794c2c290 100644
--- a/docs/tutorials/007/client_acceptor.cpp
+++ b/docs/tutorials/007/client_acceptor.cpp
@@ -13,7 +13,7 @@ Client_Acceptor::Client_Acceptor (int concurrency)
/* Construct ourselves with a reference to somebody else' Thread_Pool.
Obvioulsy our concurrency strategy is "thread_pool_" at this point. */
Client_Acceptor::Client_Acceptor (Thread_Pool &thread_pool)
- : concurrency_ (thread_pool),
+ : concurrency_ (thread_pool_),
the_thread_pool_ (thread_pool)
{
}