summaryrefslogtreecommitdiff
path: root/src/audiocachefile.h
diff options
context:
space:
mode:
authorAndré Nusser <andre.nusser@googlemail.com>2016-01-29 20:59:43 +0100
committerAndré Nusser <andre.nusser@googlemail.com>2016-01-29 20:59:43 +0100
commit6f685ae7ac93a04963532c21152fa0491931988b (patch)
treed9bceb5f0410b60e3ffbd79de60be47c7ea29bb7 /src/audiocachefile.h
parent9ebd9aa0c3429f896e6c41f279b570ba36aec674 (diff)
Remove pointer from audiofiles map.
Diffstat (limited to 'src/audiocachefile.h')
-rw-r--r--src/audiocachefile.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audiocachefile.h b/src/audiocachefile.h
index 8e40a2e..343133e 100644
--- a/src/audiocachefile.h
+++ b/src/audiocachefile.h
@@ -95,7 +95,7 @@ public:
void releaseFile(const std::string& filename);
protected:
- std::map<std::string, AudioCacheFile*> audiofiles;
+ std::map<std::string, AudioCacheFile> audiofiles;
std::mutex mutex;
std::vector<sample_t> read_buffer;
};