]> 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 be53d9afda69220476a894f55cd3d8b61a26ca2b..db6f2c041099de8922472baea84d122a4585b42b 100644 (file)
@@ -3,10 +3,10 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author Lars Gullik Bjønnes
+ * \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());
 }