SFML/test/Network/Ftp.test.cpp

9 lines
287 B
C++
Raw Normal View History

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