From f318cb2e300bc7825a3850ba93e2d153e6c6c195 Mon Sep 17 00:00:00 2001 From: Pankaj Pandey Date: Wed, 6 Dec 2017 18:33:57 +0530 Subject: [PATCH] Update tlString.h --- src/tl/tl/tlString.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/tl/tl/tlString.h b/src/tl/tl/tlString.h index 00a74537f..60dc8718c 100644 --- a/src/tl/tl/tlString.h +++ b/src/tl/tl/tlString.h @@ -271,6 +271,10 @@ template <> TL_PUBLIC std::string to_string (const long &d); template <> TL_PUBLIC std::string to_string (const unsigned long &d); template <> TL_PUBLIC std::string to_string (const long long &d); template <> TL_PUBLIC std::string to_string (const unsigned long long &d); +#if defined(HAVE_64BIT_COORD) +template <> TL_PUBLIC std::string to_string (const __int128 &d); +template <> TL_PUBLIC std::string to_string (const unsigned __int128 &d); +#endif template <> TL_PUBLIC std::string to_string (const char * const &cp); template <> TL_PUBLIC std::string to_string (char * const &cp); template <> TL_PUBLIC std::string to_string (const unsigned char * const &cp);