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:
Martin Vermeer 2003-10-06 09:35:38 +00:00
parent 0b24926473
commit f6b8ed1c32
10 changed files with 26 additions and 1 deletions

View File

@ -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:

View File

@ -16,6 +16,7 @@
#include <algorithm>
using std::vector;
using std::reverse;
int Graph::bfs_init(int s, bool clear_visited)

View File

@ -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

View File

@ -36,7 +36,9 @@
//#define FILEDEBUG 1
using std::endl;
#ifndef CXX_GLOBAL_CSTD
using std::isalpha;
#endif
using std::min;
using std::swap;

View File

@ -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;

View File

@ -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;

View File

@ -12,7 +12,7 @@
#include "math_streamstr.h"
#include "math_mathmlstream.h"
#include "support/std_ostream.h"
WriteStream & operator<<(WriteStream & ws, string const & s)
{

View File

@ -31,6 +31,7 @@ using lyx::pos_type;
using std::endl;
using std::upper_bound;
using std::lower_bound;
using std::ostream;

View File

@ -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

View File

@ -20,6 +20,7 @@
#include "tostr.h"
#include <boost/tokenizer.hpp>
#include <boost/assert.hpp>
#include <algorithm>