@@ -46,7 +46,7 @@ int main(int argc, char* argv[]) {
4646 util::thread_pool pool;
4747 async_serverserver_instance (ASYNC_SERVER_TEST_CONFIG);
4848
49- boost::threadrunning_thread (boost ::bind (&async_server::run,
49+ boost::threadrunning_thread (std ::bind (&async_server::run,
5050 &server_instance));
5151boost::this_thread::sleep (ASYNC_SERVER_SLEEP_TIME);
5252
@@ -60,11 +60,11 @@ int main(int argc, char* argv[]) {
6060 util::thread_pool pool;
6161 async_serverserver_instance (ASYNC_SERVER_TEST_CONFIG);
6262
63- boost::threadrunning_thread (boost ::bind (&async_server::run,
63+ boost::threadrunning_thread (std ::bind (&async_server::run,
6464 &server_instance));
6565boost::this_thread::sleep (ASYNC_SERVER_SLEEP_TIME);
6666
67- boost::threadstopping_thread (boost ::bind (&async_server::stop,
67+ boost::threadstopping_thread (std ::bind (&async_server::stop,
6868 &server_instance));
6969boost::this_thread::sleep (ASYNC_SERVER_SLEEP_TIME);
7070
@@ -78,19 +78,19 @@ int main(int argc, char* argv[]) {
7878 util::thread_pool pool;
7979 async_serverserver_instance (ASYNC_SERVER_TEST_CONFIG);
8080
81- boost::threadrunning_thread (boost ::bind (&async_server::run,
81+ boost::threadrunning_thread (std ::bind (&async_server::run,
8282 &server_instance));
8383boost::this_thread::sleep (ASYNC_SERVER_SLEEP_TIME);
8484
85- boost::threadstopping_thread (boost ::bind (&async_server::stop,
85+ boost::threadstopping_thread (std ::bind (&async_server::stop,
8686 &server_instance));
8787boost::this_thread::sleep (ASYNC_SERVER_SLEEP_TIME);
8888
89- boost::threadsecond_running_thread (boost ::bind (&async_server::run,
89+ boost::threadsecond_running_thread (std ::bind (&async_server::run,
9090 &server_instance));
9191boost::this_thread::sleep (ASYNC_SERVER_SLEEP_TIME);
9292
93- boost::threadsecond_stopping_thread (boost ::bind (&async_server::stop,
93+ boost::threadsecond_stopping_thread (std ::bind (&async_server::stop,
9494 &server_instance));
9595boost::this_thread::sleep (ASYNC_SERVER_SLEEP_TIME);
9696
@@ -106,15 +106,15 @@ int main(int argc, char* argv[]) {
106106 util::thread_pool pool;
107107 async_serverserver_instance (ASYNC_SERVER_TEST_CONFIG);
108108
109- boost::threadrunning_thread (boost ::bind (&async_server::run,
109+ boost::threadrunning_thread (std ::bind (&async_server::run,
110110 &server_instance));
111111boost::this_thread::sleep (ASYNC_SERVER_SLEEP_TIME);
112112
113- boost::threadsecond_running_thread (boost ::bind (&async_server::run,
113+ boost::threadsecond_running_thread (std ::bind (&async_server::run,
114114 &server_instance));
115115boost::this_thread::sleep (ASYNC_SERVER_SLEEP_TIME);
116116
117- boost::threadstopping_thread (boost ::bind (&async_server::stop,
117+ boost::threadstopping_thread (std ::bind (&async_server::stop,
118118 &server_instance));
119119boost::this_thread::sleep (ASYNC_SERVER_SLEEP_TIME);
120120
@@ -129,15 +129,15 @@ int main(int argc, char* argv[]) {
129129 util::thread_pool pool;
130130 async_serverserver_instance (ASYNC_SERVER_TEST_CONFIG);
131131
132- boost::threadrunning_thread (boost ::bind (&async_server::run,
132+ boost::threadrunning_thread (std ::bind (&async_server::run,
133133 &server_instance));
134134boost::this_thread::sleep (ASYNC_SERVER_SLEEP_TIME);
135135
136- boost::threadstopping_thread (boost ::bind (&async_server::stop,
136+ boost::threadstopping_thread (std ::bind (&async_server::stop,
137137 &server_instance));
138138boost::this_thread::sleep (ASYNC_SERVER_SLEEP_TIME);
139139
140- boost::threadsecond_stopping_thread (boost ::bind (&async_server::stop,
140+ boost::threadsecond_stopping_thread (std ::bind (&async_server::stop,
141141 &server_instance));
142142boost::this_thread::sleep (ASYNC_SERVER_SLEEP_TIME);
143143