From 6447f159e5191a5f703949717758bb50fbefdf97 Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Fri, 29 May 2020 18:06:50 +0200 Subject: [PATCH] Fix endl --- src/playlistparsers/asxiniparser.cpp | 2 +- src/playlistparsers/plsparser.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/playlistparsers/asxiniparser.cpp b/src/playlistparsers/asxiniparser.cpp index 57f48e8e1..65045568b 100644 --- a/src/playlistparsers/asxiniparser.cpp +++ b/src/playlistparsers/asxiniparser.cpp @@ -34,7 +34,7 @@ class CollectionBackendInterface; #if QT_VERSION >= QT_VERSION_CHECK(5, 14, 0) # define qt_endl Qt::endl #else -# define qt_endl std::endl +# define qt_endl endl #endif AsxIniParser::AsxIniParser(CollectionBackendInterface *collection, QObject *parent) diff --git a/src/playlistparsers/plsparser.cpp b/src/playlistparsers/plsparser.cpp index 286b97deb..3395e9bde 100644 --- a/src/playlistparsers/plsparser.cpp +++ b/src/playlistparsers/plsparser.cpp @@ -37,7 +37,7 @@ class CollectionBackendInterface; #if QT_VERSION >= QT_VERSION_CHECK(5, 14, 0) # define qt_endl Qt::endl #else -# define qt_endl std::endl +# define qt_endl endl #endif PLSParser::PLSParser(CollectionBackendInterface *collection, QObject *parent)