Closed dneto0 closed 10 months ago
See here: https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator/commit/145917616e748f3cabbb967be8cf1ce77e43c8f9#r137670455
This combines PRIu64 print format with static_cast<unsigned long long>(...) But in one of our flows unsigned long long is not uint64_t, which gives us a build error.
static_cast<unsigned long long>(...)
See here: https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator/commit/145917616e748f3cabbb967be8cf1ce77e43c8f9#r137670455
This combines PRIu64 print format with
static_cast<unsigned long long>(...)
But in one of our flows unsigned long long is not uint64_t, which gives us a build error.