SFML/test/Audio/OutputSoundFile.test.cpp
Chris Thrasher dd83189fae Enable move semantics for SoundFile types
Funny how the addition of a forward declaration resulted in
accidentally disabling move semantics for two types. We ought to
be careful that build time improvements don't have runtime
performance impacts.
2023-01-22 15:50:53 -07:00

9 lines
343 B
C++

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