My problem is simple... I am creating a TCP server and I need threads to process requests
and track time. However when i try create a thread it gives the error:
"error C2064: term does not evaluate to a function taking 1 arguments"
Here is some of the code:
sf::Thread * t = new sf::Thread(&Server::time, 0);
t->launch();
Where there is a method:
void Server::time(int clientIndex)
Any help would be welcomed