SFML/test/Audio/SoundBufferRecorder.test.cpp
2022-10-23 16:39:12 +02:00

9 lines
365 B
C++

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