mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 13:18:28 +00:00
Small fixes to allow building with STLport
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7858 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
0b24926473
commit
f6b8ed1c32
@ -1,4 +1,9 @@
|
||||
|
||||
2003-10-06 Martin Vermeer <martin.vermeer@hut.fi>
|
||||
|
||||
* graph.C:
|
||||
* paragraph_pimpl.C: Small fixes to build using STLport
|
||||
|
||||
2003-10-02 André Pönitz <poenitz@gmx.net>
|
||||
|
||||
* lyxfunc.C:
|
||||
|
@ -16,6 +16,7 @@
|
||||
#include <algorithm>
|
||||
|
||||
using std::vector;
|
||||
using std::reverse;
|
||||
|
||||
|
||||
int Graph::bfs_init(int s, bool clear_visited)
|
||||
|
@ -1,3 +1,10 @@
|
||||
2003-10-06 Martin Vermeer <martin.vermeer@hut.fi>
|
||||
|
||||
* math_cursor.C:
|
||||
* math_parser.C:
|
||||
* math_sizeinset.C:
|
||||
* math_streamstr.C: Small fixes to build using STLport
|
||||
|
||||
2003-09-22 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
|
||||
|
||||
* math_symbolinset.C (metrics): apply a different hack to metrics
|
||||
|
@ -36,7 +36,9 @@
|
||||
//#define FILEDEBUG 1
|
||||
|
||||
using std::endl;
|
||||
#ifndef CXX_GLOBAL_CSTD
|
||||
using std::isalpha;
|
||||
#endif
|
||||
using std::min;
|
||||
using std::swap;
|
||||
|
||||
|
@ -65,7 +65,9 @@ following hack as starting point to write some macros:
|
||||
#include "support/std_sstream.h"
|
||||
#include "debug.h"
|
||||
|
||||
#ifndef CXX_GLOBAL_CSTD
|
||||
using std::atoi;
|
||||
#endif
|
||||
using std::endl;
|
||||
using std::fill;
|
||||
|
||||
|
@ -17,7 +17,9 @@
|
||||
#include "math_streamstr.h"
|
||||
#include "support/std_ostream.h"
|
||||
|
||||
#ifndef CXX_GLOBAL_CSTD
|
||||
using std::atoi;
|
||||
#endif
|
||||
|
||||
using std::auto_ptr;
|
||||
|
||||
|
@ -12,7 +12,7 @@
|
||||
|
||||
#include "math_streamstr.h"
|
||||
#include "math_mathmlstream.h"
|
||||
|
||||
#include "support/std_ostream.h"
|
||||
|
||||
WriteStream & operator<<(WriteStream & ws, string const & s)
|
||||
{
|
||||
|
@ -31,6 +31,7 @@ using lyx::pos_type;
|
||||
|
||||
using std::endl;
|
||||
using std::upper_bound;
|
||||
using std::lower_bound;
|
||||
|
||||
using std::ostream;
|
||||
|
||||
|
@ -1,3 +1,7 @@
|
||||
2003-10-06 Martin Vermeer <martin.vermeer@hut.fi>
|
||||
|
||||
* lstrings.C: Small fixes to build using STLport
|
||||
|
||||
2003-09-29 Angus Leeming <leeming@lyx.org>
|
||||
|
||||
* filetools.C (ReplaceEnvironmentPath): make it work for both
|
||||
|
@ -20,6 +20,7 @@
|
||||
#include "tostr.h"
|
||||
|
||||
#include <boost/tokenizer.hpp>
|
||||
#include <boost/assert.hpp>
|
||||
|
||||
#include <algorithm>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user