]> git.lyx.org Git - lyx.git/blobdiff - src/support/lyxmanip.h
Fix the line-delete-forward bug?
[lyx.git] / src / support / lyxmanip.h
index a03a0c7e0532fcf568c07ca92f75193908df5755..bc106bed79229554475b6625c90c7fd0b5eec7bb 100644 (file)
@@ -4,8 +4,6 @@
 
 #include "support/LOstream.h"
 
-using std::ostream;
-
 ///
 struct NewLineAndDepth_ {
        int depth_;
@@ -22,7 +20,7 @@ NewLineAndDepth_ newlineAndDepth(int n)
 
 ///
 inline
-ostream & operator<<(ostream & os, NewLineAndDepth_ const & nlad_)
+std::ostream & operator<<(std::ostream & os, NewLineAndDepth_ const & nlad_)
 {
        os << string(nlad_.depth_, ' ');
        return os;