]> git.lyx.org Git - lyx.git/blobdiff - src/support/atoi.C
Remove executable status info from typeIndicator.
[lyx.git] / src / support / atoi.C
index 0b091fa2ab21c01d90fab99b467676e57aa17e6f..674c2edef315ac84060dfd86d42b8b38881d7f63 100644 (file)
 
 #include <config.h>
 
-#include <cstdlib>
+#include "support/lyxlib.h"
 
-#include "lyxlib.h"
+#include <cstdlib>
 
 #ifndef CXX_GLOBAL_CSTD
 using std::atoi;
 #endif
 
-int lyx::support::atoi(string const & nstr)
+int lyx::support::atoi(std::string const & nstr)
 {
        return ::atoi(nstr.c_str());
 }