From: Lars Gullik Bjønnes Date: Mon, 12 Mar 2001 09:30:12 +0000 (+0000) Subject: make lyx compile with NEW_INSETS and gcc 3.0 X-Git-Tag: 1.6.10~21481 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=875a3442af3a9f226fe02a5757ef3a07e9dff8ef;p=lyx.git make lyx compile with NEW_INSETS and gcc 3.0 git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1736 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/ChangeLog b/src/ChangeLog index 986f0d94ef..875ebce4bf 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2001-03-12 Lars Gullik Bjønnes + * buffer.C: add using std::stringstream. + * lyx_cb.C: readd using std::ios. * buffer.C: add using std::map. diff --git a/src/buffer.C b/src/buffer.C index 4c06515ebd..60b8af6a41 100644 --- a/src/buffer.C +++ b/src/buffer.C @@ -97,6 +97,7 @@ #include "Lsstream.h" #include "converter.h" +using std::stringstream; using std::ostream; using std::ofstream; using std::ifstream;