mirror of
https://github.com/SFML/SFML.git
synced 2024-11-24 20:31:05 +08:00
10 lines
395 B
C++
10 lines
395 B
C++
#include <SFML/Audio/SoundRecorder.hpp>
|
|
|
|
#include <type_traits>
|
|
|
|
static_assert(!std::is_constructible_v<sf::SoundRecorder>);
|
|
static_assert(!std::is_copy_constructible_v<sf::SoundRecorder>);
|
|
static_assert(!std::is_copy_assignable_v<sf::SoundRecorder>);
|
|
static_assert(!std::is_nothrow_move_constructible_v<sf::SoundRecorder>);
|
|
static_assert(!std::is_nothrow_move_assignable_v<sf::SoundRecorder>);
|