File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
concurrency/src/network/concurrency Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
1
// Copyright 2010 Dean Michael Berris.
2
2
// Copyright 2012 Google, Inc.
3
3
// Copyright (c) Glyn Matthews 2012.
4
+ // Copyright 2013 Linunix.
4
5
// Distributed under the Boost Software License, Version 1.0.
5
6
// (See accompanying file LICENSE_1_0.txt or copy at
6
7
// http://www.boost.org/LICENSE_1_0.txt)
18
19
namespace network {
19
20
namespace concurrency {
20
21
21
- typedef std::shared_ptr<boost::asio::io_service> io_service_ptr ;
22
- typedef std::shared_ptr<std::vector<std::thread>> worker_threads_ptr ;
23
- typedef std::shared_ptr<boost::asio::io_service::work> sentinel_ptr ;
22
+ using io_service_ptr = std::shared_ptr<boost::asio::io_service>;
23
+ using worker_threads_ptr = std::shared_ptr<std::vector<std::thread>>;
24
+ using sentinel_pt = std::shared_ptr<boost::asio::io_service::work>;
24
25
25
26
struct thread_pool_pimpl ;
26
27
You can’t perform that action at this time.
0 commit comments