From 70d6743c390c78c1a359db793f0dbc7516c85972 Mon Sep 17 00:00:00 2001 From: Kai Philipp Date: Sun, 17 Jul 2016 16:55:56 +0200 Subject: [PATCH] bugfix for compiler error on ubuntu 16.04. - QDataStream --- src/third_party/qtsingleapplication/qtlocalpeer.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/third_party/qtsingleapplication/qtlocalpeer.cpp b/src/third_party/qtsingleapplication/qtlocalpeer.cpp index 43e6bf42..7b733aea 100644 --- a/src/third_party/qtsingleapplication/qtlocalpeer.cpp +++ b/src/third_party/qtsingleapplication/qtlocalpeer.cpp @@ -44,6 +44,10 @@ static PProcessIdToSessionId pProcessIdToSessionId = 0; #include #endif +// @FIXME: bugfix for strange new compiler error on ubuntu 16.04 = ‘QDataStream ds’ has initializer but incomplete type +// not sure if that collides on other systems: +#include + namespace SharedTools { static const char ack[] = "ack";