2022-07-25 00:36:05 -06:00
|
|
|
#include <SFML/Audio/Sound.hpp>
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
|
2023-01-05 17:58:49 -07:00
|
|
|
static_assert(!std::is_constructible_v<sf::Sound, sf::SoundBuffer&&>);
|
2022-07-25 00:36:05 -06:00
|
|
|
static_assert(std::is_copy_constructible_v<sf::Sound>);
|
|
|
|
static_assert(std::is_copy_assignable_v<sf::Sound>);
|
|
|
|
static_assert(std::is_move_constructible_v<sf::Sound>);
|
|
|
|
static_assert(!std::is_nothrow_move_constructible_v<sf::Sound>);
|
|
|
|
static_assert(std::is_move_assignable_v<sf::Sound>);
|
|
|
|
static_assert(!std::is_nothrow_move_assignable_v<sf::Sound>);
|