diff --git a/YACReaderLibrary/comic_vine/model/response_parser.cpp b/YACReaderLibrary/comic_vine/model/response_parser.cpp index 033fd607..dd258212 100644 --- a/YACReaderLibrary/comic_vine/model/response_parser.cpp +++ b/YACReaderLibrary/comic_vine/model/response_parser.cpp @@ -2,6 +2,7 @@ #include #include #include +#include ResponseParser::ResponseParser(QObject *parent) : QObject(parent), error(false), errorTxt("None"), numResults(-1), currentPage(-1), totalPages(-1) diff --git a/tests/concurrent_queue_test/concurrent_queue_test.cpp b/tests/concurrent_queue_test/concurrent_queue_test.cpp index b09d05f6..d9c4eb4b 100644 --- a/tests/concurrent_queue_test/concurrent_queue_test.cpp +++ b/tests/concurrent_queue_test/concurrent_queue_test.cpp @@ -209,6 +209,7 @@ void waitAndPrint(const ConcurrentQueue &queue, const QueueControlMessagePrinter printer.printEndWaitingMessage(); } +#if QT_VERSION < QT_VERSION_CHECK(6, 9, 0) template QDebug operator<<(QDebug debug, const std::array &array) { @@ -225,6 +226,7 @@ QDebug operator<<(QDebug debug, const std::array &array) return debug; } +#endif using RandomEngine = std::mt19937_64;