]> git.lyx.org Git - lyx.git/blobdiff - src/support/lyxmanip.h
remove commented HAVE_SSTREAM code
[lyx.git] / src / support / lyxmanip.h
index 75e6c4e04d008f46cfbb3c7f0450f461b0c24337..52dc69692aaf2f9bcf5e900e77a25b2aeb2f2851 100644 (file)
@@ -2,14 +2,14 @@
 #ifndef LYX_MANIP_H
 #define LYX_MANIP_H
 
-#include <iostream>
+#include "support/LOstream.h"
 
 ///
 struct NewLineAndDepth_ {
        int depth_;
 };
 
-///
+//
 inline
 NewLineAndDepth_ newlineAndDepth(int n)
 {
@@ -17,9 +17,10 @@ NewLineAndDepth_ newlineAndDepth(int n)
        nlad_.depth_ = n;
        return nlad_;
 }
-///
+
+//
 inline
-ostream & operator<<(ostream & os, NewLineAndDepth_ const & nlad_)
+std::ostream & operator<<(std::ostream & os, NewLineAndDepth_ const & nlad_)
 {
        os << string(nlad_.depth_, ' ');
        return os;