[C++] Use 'nullptr'. Tools edition.

llvm-svn: 207176
This commit is contained in:
Craig Topper
2014-04-25 04:24:47 +00:00
parent 409ac186bb
commit e6cb63e471
36 changed files with 179 additions and 177 deletions

View File

@@ -93,7 +93,7 @@ static void PrintObjectSectionSizes(ObjectFile *Obj) {
std::string fmtbuf;
raw_string_ostream fmt(fmtbuf);
const char *radix_fmt = 0;
const char *radix_fmt = nullptr;
switch (Radix) {
case octal:
radix_fmt = PRIo64;