1
0
mirror of https://github.com/SFML/SFML.git synced 2025-03-14 01:40:05 +08:00
SFML/test/Audio/InputSoundFile.cpp

9 lines
340 B
C++
Raw Normal View History

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