Le 11/06/2016 22:30, Pavel Sanda a écrit :
Stephan Witt wrote:
commit e8b15b5f0cd216a342dbcaef7b9e90722bc99fc3
Author: Stephan Witt <sw...@lyx.org>
Date: Sat Jun 11 09:56:35 2016 +0200
Add missing includes after change to boost signals2
diff --git a/src/Server.h b/src/Server.h
index 7aecde6..2c1162d 100644
--- a/src/Server.h
+++ b/src/Server.h
@@ -16,6 +16,9 @@
#include <boost/signals2/trackable.hpp>
+#include <vector>
+#include <sstream>
Is sstream really needed here? I dont see any use
of it in the header itself.
I had a fix in my tree where I included <iostream> in Server.cpp because
std::endl was not declared.
I think we should get rid of our weird strfwd.h (which is not what it
says anyway since it defines streams stuff too), since with modern
compilers it does not forward declare stuff but just includes the headers.
JMarc