mirror of
https://github.com/pocoproject/poco.git
synced 2025-11-24 22:29:47 +01:00
trunk/branch integration: 64bit fix
This commit is contained in:
@@ -394,7 +394,11 @@ void NumberFormatter::append(std::string& str, const void* ptr)
|
||||
{
|
||||
char buffer[24];
|
||||
#if defined(POCO_PTR_IS_64_BIT)
|
||||
std::sprintf(buffer, "%016"I64_FMT"X", (UIntPtr) ptr);
|
||||
#if defined(POCO_LONG_IS_64_BIT)
|
||||
std::sprintf(buffer, "%016lX", (UIntPtr) ptr);
|
||||
#else
|
||||
std::sprintf(buffer, "%016"I64_FMT"X", (UIntPtr) ptr);
|
||||
#endif
|
||||
#else
|
||||
std::sprintf(buffer, "%08lX", (UIntPtr) ptr);
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user