Commit da448eb0 authored by neverlord's avatar neverlord

removed boost::thread support

parent d21e56f8
......@@ -98,7 +98,7 @@ int main(int argc, char** argv) {
return 1;
}
for (int64_t i = 0; i < num_sender; ++i) {
detail::thread(sender, testee, num_msgs).detach();
std::thread(sender, testee, num_msgs).detach();
}
await_all_others_done();
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment