mirror of
https://github.com/intel/llvm.git
synced 2026-01-14 03:50:17 +08:00
Stop using the "%z" size_t modifier and cast all size_t values to uint64_t. Some platforms don't support this modification.
llvm-svn: 164148
This commit is contained in:
@@ -206,7 +206,7 @@ SBValue::GetByteSize ()
|
||||
}
|
||||
|
||||
if (log)
|
||||
log->Printf ("SBValue(%p)::GetByteSize () => %zu", value_sp.get(), result);
|
||||
log->Printf ("SBValue(%p)::GetByteSize () => %llu", value_sp.get(), (uint64_t)result);
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user