我是 ansi 和 iso 世界的新手,我编译了我的程序:
-asni -pedantic -std=c++11 -std=c++98
现在,我收到以下警告:
warning: converting from 'void (NetworkSocket::*)()' to 'void* (*)(void*)' [-pedantic]
对于以下行:
if (pthread_create(this->threadArray, NULL, (void*(*)(void*)) &NetworkSocket::threadProcedure , (void *)this) != 0)
{ /* error */ }
我怎样才能通过迂腐警告?