There are modest three lines of the plus code written in VS 2015
std::list <sf::TcpSocket> soc; sf::TcpSocket co; soc.push_back(co); At the assembly stage, the following error occurs
error C2280: "sf :: TcpSocket :: TcpSocket (const sf :: TcpSocket &)": an attempt was made to reference a remote function
I see such a mistake for the first time, I didn’t come across VS in earlier versions, I found the error code on MSDN, but I didn’t see anything intelligible there. What kind of beast and how to fight?
sf::TcpSocket- your class? It seems to have no default constructor. - KoVadim