summaryrefslogtreecommitdiffstats
path: root/src/library/autodj/autodjfeature.cpp
diff options
context:
space:
mode:
authorUwe Klotz <uklotz@mixxx.org>2019-11-25 00:37:58 +0100
committerUwe Klotz <uklotz@mixxx.org>2019-11-25 00:37:58 +0100
commit57a1e955f7635b816367577843514454453b46c0 (patch)
tree5226ef95725a7e0360fb8d9b508eaaf0bc34940a /src/library/autodj/autodjfeature.cpp
parenta06c136957f331df314501459282901e63f3317f (diff)
Don't std::move UserSettingsPointer
Diffstat (limited to 'src/library/autodj/autodjfeature.cpp')
-rw-r--r--src/library/autodj/autodjfeature.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/autodj/autodjfeature.cpp b/src/library/autodj/autodjfeature.cpp
index 655176b179..f2907fadb1 100644
--- a/src/library/autodj/autodjfeature.cpp
+++ b/src/library/autodj/autodjfeature.cpp
@@ -50,7 +50,7 @@ namespace {
AutoDJFeature::AutoDJFeature(Library* pLibrary,
UserSettingsPointer pConfig,
PlayerManagerInterface* pPlayerManager)
- : LibraryFeature(pLibrary, std::move(pConfig)),
+ : LibraryFeature(pLibrary, pConfig),
m_pTrackCollection(pLibrary->trackCollections()->internalCollection()),
m_playlistDao(m_pTrackCollection->getPlaylistDAO()),
m_iAutoDJPlaylistId(findOrCrateAutoDjPlaylistId(m_playlistDao)),