]> git.lyx.org Git - lyx.git/blobdiff - src/main.cpp
revert erroneous previous commit.
[lyx.git] / src / main.cpp
index 41ce51a772e85d57823e1bffbf252753f1986b6a..11f91d3f55e76d9b744498481e6330c4f3dd6fd0 100644 (file)
 
 #include <config.h>
 
-#include "support/debug.h"
 #include "LyX.h"
-#include "support/gettext.h"
 
+#include "support/debug.h"
+#include "support/gettext.h"
 #include "support/os.h"
 
 #include <iostream>
 #include <ios>
 #endif
 
+using namespace std;
+
+
 int main(int argc, char * argv[])
 {
 #ifdef HAVE_IOS
-       std::ios_base::sync_with_stdio(false);
+       ios_base::sync_with_stdio(false);
 #endif
 
        // To avoid ordering of global object problems with some
        // stdlibs we do the initialization here, but still as
        // early as possible.
-       lyx::lyxerr.setStream(std::cerr);
+       lyx::lyxerr.setStream(cerr);
 
        lyx::support::os::init(argc, argv);