X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fsupport%2Fconvert.h;h=fb069c98c312bf7a6a39da7740b414e5e11873c7;hb=67b829bf098fc1f6a288e949b289fc22646636fd;hp=e72fe61b5667363e846ee4bc0f5ee02e7b475949;hpb=b14c0530eb2c7c81d007201084d748034ad2a8fc;p=lyx.git diff --git a/src/support/convert.h b/src/support/convert.h index e72fe61b56..fb069c98c3 100644 --- a/src/support/convert.h +++ b/src/support/convert.h @@ -33,8 +33,16 @@ template<> std::string convert(unsigned int ui); template<> docstring convert(unsigned int ui); template<> std::string convert(unsigned long ul); template<> docstring convert(unsigned long ul); +#ifdef LYX_USE_LONG_LONG +template<> std::string convert(unsigned long long ull); +template<> docstring convert(unsigned long long ull); +#endif template<> std::string convert(long l); template<> docstring convert(long l); +#ifdef LYX_USE_LONG_LONG +template<> std::string convert(long long ll); +template<> docstring convert(long long ll); +#endif template<> std::string convert(float f); template<> std::string convert(double d); template<> int convert(std::string const & s);