]> git.lyx.org Git - lyx.git/blobdiff - src/support/convert.h
Correct comment
[lyx.git] / src / support / convert.h
index fb069c98c312bf7a6a39da7740b414e5e11873c7..1b3e5bef29b831663e009af806864ccc3fc41832 100644 (file)
@@ -33,13 +33,13 @@ template<> std::string convert<std::string>(unsigned int ui);
 template<> docstring convert<docstring>(unsigned int ui);
 template<> std::string convert<std::string>(unsigned long ul);
 template<> docstring convert<docstring>(unsigned long ul);
-#ifdef LYX_USE_LONG_LONG
+#ifdef HAVE_LONG_LONG_INT
 template<> std::string convert<std::string>(unsigned long long ull);
 template<> docstring convert<docstring>(unsigned long long ull);
 #endif
 template<> std::string convert<std::string>(long l);
 template<> docstring convert<docstring>(long l);
-#ifdef LYX_USE_LONG_LONG
+#ifdef HAVE_LONG_LONG_INT
 template<> std::string convert<std::string>(long long ll);
 template<> docstring convert<docstring>(long long ll);
 #endif
@@ -53,6 +53,7 @@ template<> double convert<double>(std::string const & s);
 template<> int convert<int>(char const * cptr);
 template<> double convert<double>(char const * cptr);
 
+int convert(std::string const & s, int base);
 } // namespace lyx
 
 #endif