From 254652f03ec648423c9488929dc62fb3f4b817c7 Mon Sep 17 00:00:00 2001 From: "Jason E. Hale" Date: Sat, 19 Apr 2025 06:25:11 -0400 Subject: [PATCH] Add missing include Fixes build with Qt 6.9.0 --- YACReaderLibrary/comic_vine/model/response_parser.cpp | 1 + 1 file changed, 1 insertion(+) 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)