about summary refs log tree commit diff
path: root/absl/numeric
diff options
context:
space:
mode:
Diffstat (limited to 'absl/numeric')
-rw-r--r--absl/numeric/int128.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/absl/numeric/int128.h b/absl/numeric/int128.h
index 803f0ff23ab8..bc7dbb47ae81 100644
--- a/absl/numeric/int128.h
+++ b/absl/numeric/int128.h
@@ -80,8 +80,8 @@ namespace absl {
 //                                    // converted to float.
 //
 //     absl::uint128 v;
-//     absl::uint64_t i = v;                         // Error
-//     absl::uint64_t i = static_cast<uint64_t>(v);  // OK
+//     uint64_t i = v;                         // Error
+//     uint64_t i = static_cast<uint64_t>(v);  // OK
 //
 class
 #if defined(ABSL_HAVE_INTRINSIC_INT128)