]> git.lyx.org Git - lyx.git/blobdiff - src/Lsstream.h
fix "make dist" target
[lyx.git] / src / Lsstream.h
index 8d171d215642096862f95447ed432b0e03c9c21a..536899566dfe8a9a7b3549ecbdaa59ccac27c4f6 100644 (file)
 #ifndef LSSTREAM_H
 #define LSSTREAM_H 
 
+// Since we will include a string header anyway, we'd better do it
+// right now so that <string> is not loaded before lyxstring.h. (JMarc)
+#include "LString.h"
+
 #ifdef HAVE_SSTREAM
 #include <sstream>
 #else
 #include "support/sstream.h"
 #endif
 
+using std::istringstream;
+using std::ostringstream;
+
 #endif