]> git.lyx.org Git - lyx.git/blobdiff - src/texrow.C
hopefully fix tex2lyx linking.
[lyx.git] / src / texrow.C
index 9b760772e2f74a5ab726e4f959ee34fec5fa5a38..ee4b7410946a3fc08e4f3d1ad2676a1e2d9bb4b7 100644 (file)
 #include "texrow.h"
 #include "debug.h"
 
+#include <algorithm>
+
+
+namespace lyx {
 
 using std::find_if;
-using std::endl;
+
 
 namespace {
 
@@ -82,3 +86,6 @@ TexRow & TexRow::operator+=(TexRow const & tr)
        rowlist.insert(rowlist.end(), tr.rowlist.begin(), tr.rowlist.end());
        return *this;
 }
+
+
+} // namespace lyx