SFML community forums

Help => Network => Topic started by: Wissam on July 17, 2014, 12:52:24 am

Title: Problem with sf::UdpSocket
Post by: Wissam on July 17, 2014, 12:52:24 am
So this error keeps raising up after hours of trying to find whats wrong..
Quote
Error   1   error C2248: 'sf::NonCopyable::operator =' : cannot access private member declared in class 'sf::NonCopyable'

I've narrowed down to where the problem occurs through the process of guess and check(keep in mind im using MSV13 if that makes a difference)

Quote
server::server(sf::UdpSocket surver, sf::IpAddress ip,
   int por, std::string stats){
   serverIP = ip;
   port = por;
   status = stats;
   serverSLSocket = surver;

specifically here:
Quote
serverSLSocket = surver;

Much help is appreciated!
Title: Re: Problem with sf::UdpSocket
Post by: Strelok on July 17, 2014, 03:31:43 am
Socket inherits NonCopyable. That means you can't use the assignment operator and the copy constructor. https://github.com/SFML/SFML/blob/master/include/SFML/System/NonCopyable.hpp  (https://github.com/SFML/SFML/blob/master/include/SFML/System/NonCopyable.hpp)