]> git.lyx.org Git - lyx.git/blobdiff - src/support/atoi.C
remove !NEW_INSETS cruft
[lyx.git] / src / support / atoi.C
index 2e9b3ed580686601027da914b4a8f0d9012516f5..949dee071152e4bf38be98c707b95ccda1c81412 100644 (file)
@@ -4,6 +4,10 @@
 
 #include "lyxlib.h"
 
+#ifndef CXX_GLOBAL_CSTD
+using std::atoi;
+#endif
+
 int lyx::atoi(string const & nstr)
 {
        return ::atoi(nstr.c_str());