From ffd9c94381ad4739ce56428f10dda3daba376f30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20D=C3=BCrrenberger?= Date: Sun, 6 Aug 2017 00:29:59 +0200 Subject: [PATCH] Remove unused/leftover openForWriting function in InputSoundFile. --- include/SFML/Audio/InputSoundFile.hpp | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/include/SFML/Audio/InputSoundFile.hpp b/include/SFML/Audio/InputSoundFile.hpp index 031c85f4..d50e76ec 100644 --- a/include/SFML/Audio/InputSoundFile.hpp +++ b/include/SFML/Audio/InputSoundFile.hpp @@ -100,18 +100,6 @@ public: //////////////////////////////////////////////////////////// bool openFromStream(InputStream& stream); - //////////////////////////////////////////////////////////// - /// \brief Open the sound file from the disk for writing - /// - /// \param filename Path of the sound file to write - /// \param channelCount Number of channels in the sound - /// \param sampleRate Sample rate of the sound - /// - /// \return True if the file was successfully opened - /// - //////////////////////////////////////////////////////////// - bool openForWriting(const std::string& filename, unsigned int channelCount, unsigned int sampleRate); - //////////////////////////////////////////////////////////// /// \brief Get the total number of audio samples in the file ///