Jump to content

  • Log In with Google      Sign In   
  • Create Account

14 years ago on June 15th Gamedev.net was first launched! We want to thank all of you for being part of our community and hope the best years are ahead of us. Happy birthday Gamedev.net!

Wooh

Member Since 19 Dec 2008
Offline Last Active Yesterday, 03:13 PM
*****

Posts I've Made

In Topic: no matching function for call to

30 May 2013 - 03:42 AM

Remove mesh:: unless the mesh class is placed inside a namespace named mesh.

In Topic: std::bind and function

27 May 2013 - 05:24 PM

The say function doesn't do anything. Use std::cout if you want to print the string.
void say(){std::cout<<"I'm foo\n";}

In Topic: SDL.net

27 May 2013 - 09:33 AM

The problem is that you close the client socket, both on the client and on the server, and then you try to use that socket again. After the socket has been closed you can't use it to send or receive. You would have to reconnect to the server each time you send or keep the connection open the whole time.

In Topic: decltype

27 May 2013 - 12:13 AM

I think the class types that you use in the tuple has to be defined and not just forward declared.

In Topic: SDL.net

25 May 2013 - 07:48 AM

Are you not using SDLNet_TCP_Recv on the client side?

PARTNERS