From: Lars Gullik Bjønnes Date: Thu, 1 Mar 2001 13:31:14 +0000 (+0000) Subject: add std support X-Git-Tag: 1.6.10~21545 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;ds=sidebyside;h=7232740b353f4d7222b867a26219e7a894167eca;p=lyx.git add std support git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1645 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/mathed/array.C b/src/mathed/array.C index 2ef09bf7c9..9004200de8 100644 --- a/src/mathed/array.C +++ b/src/mathed/array.C @@ -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) diff --git a/src/mathed/array.h b/src/mathed/array.h index 935228f0c0..158affcdbf 100644 --- a/src/mathed/array.h +++ b/src/mathed/array.h @@ -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_;