Skip to content

Commit

Permalink
SoundManagerConfig: Fix undefined default ctor andr remove empty dtor
Browse files Browse the repository at this point in the history
  • Loading branch information
Holzhaus committed Jan 15, 2022
1 parent 94beac6 commit 68e7f37
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
5 changes: 0 additions & 5 deletions src/soundio/soundmanagerconfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,6 @@ SoundManagerConfig::SoundManagerConfig(SoundManager* pSoundManager)
m_configFile = QFileInfo(QDir(CmdlineArgs::Instance().getSettingsPath()).filePath(SOUNDMANAGERCONFIG_FILENAME));
}

SoundManagerConfig::~SoundManagerConfig() {
// don't write to disk here, it's SoundManager's responsibility
// to save its own configuration -- bkgood
}

/**
* Read the SoundManagerConfig xml serialization at the predetermined
* path
Expand Down
3 changes: 0 additions & 3 deletions src/soundio/soundmanagerconfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@ class SoundManagerConfig {
static const int kDefaultAudioBufferSizeIndex;
static const int kDefaultSyncBuffers;

SoundManagerConfig();
~SoundManagerConfig();

bool readFromDisk();
bool writeToDisk() const;
QString getAPI() const;
Expand Down

0 comments on commit 68e7f37

Please sign in to comment.