Compilation fixes.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2939 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2001-10-24 18:10:21 +00:00
parent e96ae7b972
commit 68a3a474b7
4 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2001-10-24 Angus Leeming <a.leeming@ic.ac.uk>
* math_nestinset.C: added using std::max, min directives.
* math_scriptinset.C: added using std::ostream directive.
* math_scriptinset.h: replaced ostream with std::ostream.
2001-10-17 André Pönitz <poenitz@gmx.net>

View File

@ -5,6 +5,8 @@
#include "math_nestinset.h"
#include "debug.h"
using std::max;
using std::min;
MathNestInset::MathNestInset(idx_type nargs)
: MathDimInset(), cells_(nargs)

View File

@ -13,6 +13,7 @@
#include "math_scriptinset.h"
using std::ostream;
using std::ostringstream;

View File

@ -23,7 +23,7 @@ public:
///
void write(MathWriteInfo & os) const;
///
void writeNormal(ostream & os) const;
void writeNormal(std::ostream & os) const;
///
void metrics(MathMetricsInfo const & st) const;
///
@ -32,7 +32,7 @@ public:
///
void write(MathInset const *, MathWriteInfo & os) const;
///
void writeNormal(MathInset const *, ostream & os) const;
void writeNormal(MathInset const *, std::ostream & os) const;
///
void metrics(MathInset const * nucleus, MathMetricsInfo const & st) const;
///