зеркало из https://github.com/microsoft/clang-1.git
Fix incorrect format string in debug output.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@143768 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
ddaec0dba6
Коммит
8a5d0aedc1
|
@ -18,6 +18,7 @@
|
|||
#include "clang/Sema/SemaDiagnostic.h"
|
||||
#include "llvm/Support/Format.h"
|
||||
#include "llvm/ADT/SmallSet.h"
|
||||
#include "llvm/ADT/StringExtras.h"
|
||||
#include "llvm/Support/MathExtras.h"
|
||||
#include "llvm/Support/CrashRecoveryContext.h"
|
||||
|
||||
|
@ -2161,7 +2162,7 @@ ASTContext::getObjCLayout(const ObjCInterfaceDecl *D,
|
|||
|
||||
static void PrintOffset(raw_ostream &OS,
|
||||
CharUnits Offset, unsigned IndentLevel) {
|
||||
OS << llvm::format("%4d | ", Offset.getQuantity());
|
||||
OS << llvm::format("%4s | ", llvm::itostr(Offset.getQuantity()).c_str());
|
||||
OS.indent(IndentLevel * 2);
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче