]> git.lyx.org Git - lyx.git/blobdiff - src/support/lyxmanip.h
one small private fix in mathed, put noncopyable and tie into boost namespace
[lyx.git] / src / support / lyxmanip.h
index a03a0c7e0532fcf568c07ca92f75193908df5755..9c066eaab342d17d5160e4f4581251b38d40b141 100644 (file)
@@ -4,8 +4,6 @@
 
 #include "support/LOstream.h"
 
-using std::ostream;
-
 ///
 struct NewLineAndDepth_ {
        int depth_;
@@ -22,10 +20,13 @@ 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;
 }
 
+///
+std::string fmt(char const * fmtstr ...);
+
 #endif