]> git.lyx.org Git - lyx.git/blobdiff - src/support/lyxmanip.h
* lyxfunctional.h: delete compare_memfun and helper classes
[lyx.git] / src / support / lyxmanip.h
index 736158a484598c1d82d2e66ef80ee83b76b2294f..21db95248edd3e04922c4d3368c1996edbae4067 100644 (file)
@@ -12,7 +12,7 @@
 #ifndef LYX_MANIP_H
 #define LYX_MANIP_H
 
-#include "support/LOstream.h"
+#include "support/std_ostream.h"
 
 ///
 struct NewLineAndDepth_ {
@@ -32,7 +32,7 @@ NewLineAndDepth_ newlineAndDepth(int n)
 inline
 std::ostream & operator<<(std::ostream & os, NewLineAndDepth_ const & nlad_)
 {
-       os << string(nlad_.depth_, ' ');
+       os << std::string(nlad_.depth_, ' ');
        return os;
 }