]> git.lyx.org Git - lyx.git/blobdiff - src/box.C
get rid of MSVC warning (signed/unsigned comparison)
[lyx.git] / src / box.C
index af520569dcc7d47d9988a99eb85e9ea55a78077a..aae0bf10ea47193dca8f736446c127b4df117c7a 100644 (file)
--- a/src/box.C
+++ b/src/box.C
 
 #include "box.h"
 
-#include "support/LOstream.h"
+#include "support/std_ostream.h"
+
+
+namespace lyx {
 
 using std::ostream;
 
 
-Box::Box() 
+Box::Box()
        : x1(0), x2(0), y1(0), y2(0)
 {}
 
@@ -41,3 +44,6 @@ ostream & operator<<(ostream & os, Box const & b)
                 << " x2,y2: " << b.x2 << ',' << b.y2
                 << std::endl;
 }
+
+
+} // namespace lyx