2022-07-25 14:36:05 +08:00
|
|
|
#include <SFML/Audio/Sound.hpp>
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
|
2023-01-06 08:58:49 +08:00
|
|
|
static_assert(!std::is_constructible_v<sf::Sound, sf::SoundBuffer&&>);
|
2022-07-25 14:36:05 +08: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>);
|