]> git.lyx.org Git - lyx.git/blobdiff - src/support/lyxmanip.h
small changes read ChangeLog
[lyx.git] / src / support / lyxmanip.h
index a03a0c7e0532fcf568c07ca92f75193908df5755..52dc69692aaf2f9bcf5e900e77a25b2aeb2f2851 100644 (file)
@@ -4,14 +4,12 @@
 
 #include "support/LOstream.h"
 
-using std::ostream;
-
 ///
 struct NewLineAndDepth_ {
        int depth_;
 };
 
-///
+//
 inline
 NewLineAndDepth_ newlineAndDepth(int n)
 {
@@ -20,9 +18,9 @@ NewLineAndDepth_ newlineAndDepth(int 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;