SFML community forums
Help => Network => Topic started by: Wissam on July 17, 2014, 12:52:24 am
-
So this error keeps raising up after hours of trying to find whats wrong..
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)
server::server(sf::UdpSocket surver, sf::IpAddress ip,
int por, std::string stats){
serverIP = ip;
port = por;
status = stats;
serverSLSocket = surver;
specifically here:
serverSLSocket = surver;
Much help is appreciated!
-
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)