Let compiler define default constructors

This commit is contained in:
Chris Thrasher 2023-11-26 16:43:13 -07:00
parent 95465a3359
commit 0a1090c89d
4 changed files with 0 additions and 20 deletions

View File

@ -49,12 +49,6 @@ class InputStream;
class SFML_AUDIO_API InputSoundFile
{
public:
////////////////////////////////////////////////////////////
/// \brief Default constructor
///
////////////////////////////////////////////////////////////
InputSoundFile();
////////////////////////////////////////////////////////////
/// \brief Open a sound file from the disk for reading
///

View File

@ -44,12 +44,6 @@ namespace sf
class SFML_AUDIO_API OutputSoundFile
{
public:
////////////////////////////////////////////////////////////
/// \brief Default constructor
///
////////////////////////////////////////////////////////////
OutputSoundFile();
////////////////////////////////////////////////////////////
/// \brief Open the sound file from the disk for writing
///

View File

@ -62,10 +62,6 @@ void InputSoundFile::StreamDeleter::operator()(InputStream* ptr) const
}
////////////////////////////////////////////////////////////
InputSoundFile::InputSoundFile() = default;
////////////////////////////////////////////////////////////
bool InputSoundFile::openFromFile(const std::filesystem::path& filename)
{

View File

@ -32,10 +32,6 @@
namespace sf
{
////////////////////////////////////////////////////////////
OutputSoundFile::OutputSoundFile() = default;
////////////////////////////////////////////////////////////
bool OutputSoundFile::openFromFile(const std::filesystem::path& filename, unsigned int sampleRate, unsigned int channelCount)
{