mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-08 10:11:21 +00:00
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:
parent
1914570a2f
commit
c00a77c85a
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user