Skip to content

Commit

Permalink
Remove "using std:xxx" from mythmusic.
Browse files Browse the repository at this point in the history
  • Loading branch information
linuxdude42 committed Dec 30, 2021
1 parent 88c37ab commit 5a0d709
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions mythplugins/mythmusic/mythmusic/cddecoder.h
Expand Up @@ -8,7 +8,6 @@

#if CONFIG_DARWIN
#include <vector>
using std::vector;
#endif

#ifdef HAVE_CDIO
Expand Down Expand Up @@ -71,7 +70,7 @@ class CdDecoder : public Decoder
m_lastTrack, ///< Last AUDIO track
m_leadout; ///< End of last track
double m_lengthInSecs;
vector<int> m_tracks; ///< Start block offset of each track
std::vector<int> m_tracks; ///< Start block offset of each track
#endif
#if QT_VERSION < QT_VERSION_CHECK(5,14,0)
static QMutex& getCdioMutex();
Expand Down

0 comments on commit 5a0d709

Please sign in to comment.