pointer_value -> pointer

This commit is contained in:
Victor Zverovich
2014-09-23 08:21:58 -07:00
parent d2973766ea
commit ab6e759291
3 changed files with 7 additions and 7 deletions

View File

@@ -831,7 +831,7 @@ void fmt::internal::PrintfFormatter<Char>::format(
internal::report_unknown_type(spec.type_, "pointer");
spec.flags_= HASH_FLAG;
spec.type_ = 'x';
writer.write_int(reinterpret_cast<uintptr_t>(arg.pointer_value), spec);
writer.write_int(reinterpret_cast<uintptr_t>(arg.pointer), spec);
break;
case Arg::CUSTOM: {
if (spec.type_)