mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-05 17:09:56 +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>
|
2000-05-04 Lars Gullik Bjønnes <larsbj@lyx.org>
|
||||||
|
|
||||||
* config/lyxinclude.m4 (LYX_CXX_STL_STRING): change the test not
|
* config/lyxinclude.m4 (LYX_CXX_STL_STRING): change the test not
|
||||||
|
@ -18,14 +18,16 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
using std::ifstream;
|
#include <cstdlib>
|
||||||
using std::getline;
|
|
||||||
|
|
||||||
#include "ImportNoweb.h"
|
#include "ImportNoweb.h"
|
||||||
#include "lyxrc.h"
|
#include "lyxrc.h"
|
||||||
#include "support/syscall.h"
|
#include "support/syscall.h"
|
||||||
#include "bufferlist.h"
|
#include "bufferlist.h"
|
||||||
|
|
||||||
|
using std::ifstream;
|
||||||
|
using std::getline;
|
||||||
|
|
||||||
extern BufferList bufferlist;
|
extern BufferList bufferlist;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -1,9 +1,6 @@
|
|||||||
#include <config.h>
|
#include <config.h>
|
||||||
|
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
using std::ifstream;
|
|
||||||
using std::getline;
|
|
||||||
|
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
|
|
||||||
#ifdef __GNUG__
|
#ifdef __GNUG__
|
||||||
@ -23,6 +20,8 @@ using std::getline;
|
|||||||
#include "support/filetools.h"
|
#include "support/filetools.h"
|
||||||
|
|
||||||
using std::ostream;
|
using std::ostream;
|
||||||
|
using std::ifstream;
|
||||||
|
using std::getline;
|
||||||
using std::endl;
|
using std::endl;
|
||||||
|
|
||||||
extern BufferView * current_view;
|
extern BufferView * current_view;
|
||||||
|
Loading…
Reference in New Issue
Block a user