Am 11.06.2016 um 22:30 schrieb Pavel Sanda <sa...@lyx.org>: > > 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.
sstream or iostream (as JMarc wrote) because of std::endl. I have to admit that I start to mistrust the GCC-compilers. I don’t understand why our sources compile on some systems and not on some other systems. Why do I need to add this includes and on your system all is fine? Stephan