From ea9d65f377c3f7111679e627e10532e5eabea1cb Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Sat, 4 Mar 2017 15:03:39 +0800 Subject: [PATCH] Fix incomplete type compile error with Qt4 --- src/base/http/server.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/base/http/server.cpp b/src/base/http/server.cpp index 1cc51eee2..dd5759444 100644 --- a/src/base/http/server.cpp +++ b/src/base/http/server.cpp @@ -28,14 +28,18 @@ * exception statement from your version. */ +#include "server.h" + +#include +#include + #ifndef QT_NO_OPENSSL #include #else #include #endif -#include + #include "connection.h" -#include "server.h" using namespace Http;