X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FBox.cpp;h=a3461ef3ea56baea7109ac16b6b188a549f85724;hb=21992716e52ca8c277b2a448f15c8164563b3ff7;hp=8094b45f391ad55c1a913c1e2c723221617a9fa2;hpb=f630be890494c849981e4fb52ea4740506e92bed;p=lyx.git diff --git a/src/Box.cpp b/src/Box.cpp index 8094b45f39..a3461ef3ea 100644 --- a/src/Box.cpp +++ b/src/Box.cpp @@ -14,13 +14,12 @@ #include "Box.h" -#include "support/std_ostream.h" +#include +using namespace std; namespace lyx { -using std::ostream; - Box::Box() : x1(0), x2(0), y1(0), y2(0) @@ -42,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; }