Commit 14054d28 authored by Luca Boccassi's avatar Luca Boccassi

Problem: can't statically initialized pthread_t

Solution: remove statc initialization to NULL of thread.hpp pthread_t
descriptor. There is no portable way to statically initialize a
pthread_t variable.
parent cf309a4e
......@@ -57,7 +57,6 @@ namespace zmq
inline thread_t ()
: tfn(nullptr)
, arg(nullptr)
, descriptor(NULL)
{
}
......
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