Small fix for being able to compile with egcs

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@714 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Vigna 2000-05-05 07:54:27 +00:00
parent 39a450bc3d
commit b71f583af6
3 changed files with 13 additions and 5 deletions

View File

@ -1,3 +1,10 @@
2000-05-05 Juergen Vigna <jug@sad.it>
* src/insets/insetbib.C: moved using directive
* src/ImportNoweb.C: small fix for being able to compile (missing
include cstdlib)
2000-05-04 Lars Gullik Bjønnes <larsbj@lyx.org>
* config/lyxinclude.m4 (LYX_CXX_STL_STRING): change the test not

View File

@ -18,14 +18,16 @@
#endif
#include <fstream>
using std::ifstream;
using std::getline;
#include <cstdlib>
#include "ImportNoweb.h"
#include "lyxrc.h"
#include "support/syscall.h"
#include "bufferlist.h"
using std::ifstream;
using std::getline;
extern BufferList bufferlist;
/*

View File

@ -1,9 +1,6 @@
#include <config.h>
#include <fstream>
using std::ifstream;
using std::getline;
#include <cstdlib>
#ifdef __GNUG__
@ -23,6 +20,8 @@ using std::getline;
#include "support/filetools.h"
using std::ostream;
using std::ifstream;
using std::getline;
using std::endl;
extern BufferView * current_view;