mirror of
https://github.com/intel/llvm.git
synced 2026-01-23 07:58:23 +08:00
Fix various build warnings.
llvm-svn: 183140
This commit is contained in:
@@ -7,6 +7,8 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "lldb/lldb-python.h"
|
||||
|
||||
#include "lldb/DataFormatters/CXXFormatterFunctions.h"
|
||||
|
||||
#include "lldb/Core/DataBufferHeap.h"
|
||||
@@ -284,7 +286,7 @@ lldb_private::formatters::NSIndexSetSummaryProvider (ValueObject& valobj, Stream
|
||||
return false;
|
||||
}
|
||||
} while (false);
|
||||
stream.Printf("%llu index%s",
|
||||
stream.Printf("%" PRIu64 " index%s",
|
||||
count,
|
||||
(count == 1 ? "" : "es"));
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user