From c1f66b18859bb5745739b7b9af2c3e58f75658f3 Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Sat, 29 Jun 2024 15:24:54 +0200 Subject: [PATCH] CueParser: Remove unused variable --- src/playlistparsers/cueparser.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/playlistparsers/cueparser.cpp b/src/playlistparsers/cueparser.cpp index e9589c57b..e9b8cd9f8 100644 --- a/src/playlistparsers/cueparser.cpp +++ b/src/playlistparsers/cueparser.cpp @@ -102,7 +102,6 @@ SongList CueParser::Load(QIODevice *device, const QString &playlist_path, const QString line = text_stream.readLine(); QList entries; - int files = 0; QString album_artist; QString album; @@ -162,7 +161,6 @@ SongList CueParser::Load(QIODevice *device, const QString &playlist_path, const } // End of the header -> go into the track mode else if (line_name.compare(QLatin1String(kTrack), Qt::CaseInsensitive) == 0) { - files++; break; } // Ignore the rest of possible field types for now...