Fix a use of the C99 PRI format macros not to conflict with C++11 UDLs.

llvm-svn: 152475
This commit is contained in:
Benjamin Kramer 2012-03-10 02:06:27 +00:00
parent 82803112da
commit 5291e68c0c
1 changed files with 2 additions and 1 deletions

View File

@ -2136,7 +2136,8 @@ void VTableBuilder::dumpLayout(raw_ostream& Out) {
uint64_t VTableIndex = I->first;
const std::string &MethodName = I->second;
Out << llvm::format(" %4"PRIu64" | ", VTableIndex) << MethodName << '\n';
Out << llvm::format(" %4" PRIu64 " | ", VTableIndex) << MethodName
<< '\n';
}
}