]> git.lyx.org Git - lyx.git/commitdiff
add std support
authorLars Gullik Bjønnes <larsbj@gullik.org>
Thu, 1 Mar 2001 13:31:14 +0000 (13:31 +0000)
committerLars Gullik Bjønnes <larsbj@gullik.org>
Thu, 1 Mar 2001 13:31:14 +0000 (13:31 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1645 a592a061-630c-0410-9148-cb99ea01b6c8

src/mathed/array.C
src/mathed/array.h

index 2ef09bf7c9c2ef42f244ec2bf3f0d2b8563bd67a..9004200de8010b4f5c49bb600baabf4780a2cd38 100644 (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)
index 935228f0c0b38a85f61d86e8ef006a53292d6120..158affcdbfb3d6350021e58da569b5394702f70e 100644 (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_;