mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-03 16:31:13 +00:00
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:
parent
39a450bc3d
commit
b71f583af6
@ -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
|
||||
|
@ -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;
|
||||
|
||||
/*
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user