add std support

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1645 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2001-03-01 13:31:14 +00:00
parent ec086eb6e6
commit 7232740b35
2 changed files with 6 additions and 1 deletions

View File

@ -9,6 +9,11 @@
#include "math_iter.h"
#include "math_inset.h"
#include "support/LOstream.h"
using std::ostream;
using std::endl;
// Is this still needed? (Lgb)
static inline
void * my_memcpy(void * ps_in, void const * pt_in, size_t n)

View File

@ -112,7 +112,7 @@ public:
/// Make sure we can access at least \a needed elements
void need_size(int needed);
///
void dump(ostream &) const;
void dump(std::ostream &) const;
private:
/// Buffer
buffer_type bf_;