aboutsummaryrefslogtreecommitdiffhomepage
path: root/absl/numeric
diff options
context:
space:
mode:
authorGravatar Abseil Team <absl-team@google.com>2018-04-09 10:01:14 -0700
committerGravatar Matt Calabrese <calabrese@x.team>2018-04-10 10:27:42 -0400
commit475d64f2de7403a01b1b36c487328ed41d29c20c (patch)
treec772600eaaacdcdde3576f3e4f74332dc231c419 /absl/numeric
parent3f622d6c5990a7ae80eb8e52450c309a28bbec77 (diff)
- edb38790ce245c95715e5c50dfafb0db79d2cdc4 Add quickstart and build sections to readme. by Alex Strelnikov <strel@google.com>
- 508b3da428bc79cab730aa57109b352a58820573 Fix accidentally qualifying std int types with absl:: in ... by Alex Strelnikov <strel@google.com> GitOrigin-RevId: edb38790ce245c95715e5c50dfafb0db79d2cdc4 Change-Id: Idf72547f30c72fbb4153d5eae6b59b499ec42955
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 803f0ff..bc7dbb4 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)