]> git.lyx.org Git - lyx.git/blobdiff - src/support/atoi.C
* lyxfunctional.h: delete compare_memfun and helper classes
[lyx.git] / src / support / atoi.C
index f97bd43b560520ccbd1e72124add7263c81e91b0..db6f2c041099de8922472baea84d122a4585b42b 100644 (file)
@@ -6,7 +6,7 @@
  * \author Lars Gullik Bjønnes
  * \author Jean-Marc Lasgouttes
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
@@ -19,7 +19,7 @@
 using std::atoi;
 #endif
 
-int lyx::support::atoi(string const & nstr)
+int lyx::support::atoi(std::string const & nstr)
 {
        return ::atoi(nstr.c_str());
 }