fix compile problem with gcc 2.95.3 and lyxstring

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_1_6@1978 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2001-05-03 13:19:52 +00:00
parent 1914570a2f
commit c00a77c85a
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2001-05-03 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/Lsstream.h: include LString.h before the sstream headers to
fix problem with gcc 2.95.3 and lyxstring
2000-04-19 Allan Rae <rae@lyx.org>
* sigc++/: updated to libsigc++-1.0.3. This should hopefully fix some

View File

@ -12,6 +12,10 @@
#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