SFML/test/Network/UdpSocket.test.cpp

9 lines
317 B
C++
Raw Permalink Normal View History

#include <SFML/Network/UdpSocket.hpp>
#include <type_traits>
static_assert(!std::is_copy_constructible_v<sf::UdpSocket>);
static_assert(!std::is_copy_assignable_v<sf::UdpSocket>);
static_assert(!std::is_nothrow_move_constructible_v<sf::UdpSocket>);
static_assert(!std::is_nothrow_move_assignable_v<sf::UdpSocket>);