diff options
author | Abseil Team <absl-team@google.com> | 2018-04-09T17·01-0700 |
---|---|---|
committer | Matt Calabrese <calabrese@x.team> | 2018-04-10T14·27-0400 |
commit | 475d64f2de7403a01b1b36c487328ed41d29c20c (patch) | |
tree | c772600eaaacdcdde3576f3e4f74332dc231c419 /absl/numeric | |
parent | 3f622d6c5990a7ae80eb8e52450c309a28bbec77 (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.h | 4 |
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) |