]> git.lyx.org Git - lyx.git/blobdiff - src/Box.cpp
Account for old versions of Pygments
[lyx.git] / src / Box.cpp
index d968448abae683feacf8bafdf2cd2b6af0c73b2f..a3461ef3ea56baea7109ac16b6b188a549f85724 100644 (file)
@@ -16,7 +16,7 @@
 
 #include <ostream>
 
-using std::ostream;
+using namespace std;
 
 namespace lyx {
 
@@ -41,7 +41,7 @@ ostream & operator<<(ostream & os, Box const & b)
 {
        return os << "x1,y1: " << b.x1 << ',' << b.y1
                 << " x2,y2: " << b.x2 << ',' << b.y2
-                << std::endl;
+                << endl;
 }