mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 12:51:05 +08:00
9 lines
317 B
C++
9 lines
317 B
C++
|
#include <SFML/Network/TcpSocket.hpp>
|
||
|
|
||
|
#include <type_traits>
|
||
|
|
||
|
static_assert(!std::is_copy_constructible_v<sf::TcpSocket>);
|
||
|
static_assert(!std::is_copy_assignable_v<sf::TcpSocket>);
|
||
|
static_assert(!std::is_nothrow_move_constructible_v<sf::TcpSocket>);
|
||
|
static_assert(!std::is_nothrow_move_assignable_v<sf::TcpSocket>);
|