diff options
Diffstat (limited to 'absl/numeric/int128.cc')
-rw-r--r-- | absl/numeric/int128.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/absl/numeric/int128.cc b/absl/numeric/int128.cc index 5081def5e1b0..73a8f737af9f 100644 --- a/absl/numeric/int128.cc +++ b/absl/numeric/int128.cc @@ -192,9 +192,8 @@ std::ostream& operator<<(std::ostream& o, const uint128& b) { rep.append(width - rep.size(), o.fill()); } else if (adjustfield == std::ios::internal && (flags & std::ios::showbase) && - (flags & std::ios::basefield) != std::ios::dec) { - size_t base_size = (flags & std::ios::basefield) == std::ios::hex ? 2 : 1; - rep.insert(base_size, width - rep.size(), o.fill()); + (flags & std::ios::basefield) == std::ios::hex && b != 0) { + rep.insert(2, width - rep.size(), o.fill()); } else { rep.insert(0, width - rep.size(), o.fill()); } |