diff options
author | Abseil Team <absl-team@google.com> | 2018-02-07 11:21:49 -0800 |
---|---|---|
committer | katzdm <katzdm@google.com> | 2018-02-07 14:22:48 -0500 |
commit | 8311b41974e50f2753921ba986bbd188f9bc28a0 (patch) | |
tree | 7d5133bb5a56a3b38b47f5091fba6dfc8364e331 /absl | |
parent | 3917120a4c6ba8c401714c1655b4a6d7ace3d049 (diff) |
Changes imported from Abseil "staging" branch:
- bb743d8b2017dc1ac181e9d2a90728b45eef344b Internal change. by Daniel Katz <katzdm@google.com>
- a884af8e2bd70818168aad693b70b8fe98e96bcb Rearrange file comment. by Alex Strelnikov <strel@google.com>
- 5ed241ef4d5bdc1ef52f7bca9c6ff42d0448e9f4 Internal change. by Alex Strelnikov <strel@google.com>
- 04d44c8982d7b3077cae5e6189cb512818ce016b Add experiment documentation for MallocExtension API. by Chris Kennelly <ckennelly@google.com>
GitOrigin-RevId: bb743d8b2017dc1ac181e9d2a90728b45eef344b
Change-Id: Ia3ac079fc16b421a0f36be7dc0167045b92e417d
Diffstat (limited to 'absl')
-rw-r--r-- | absl/numeric/int128.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/absl/numeric/int128.h b/absl/numeric/int128.h index cfbf74c4..11ecc8bc 100644 --- a/absl/numeric/int128.h +++ b/absl/numeric/int128.h @@ -17,9 +17,10 @@ // File: int128.h // ----------------------------------------------------------------------------- // -// This header file defines 128-bit integer types. Currently, this file defines -// `uint128`, an unsigned 128-bit integer; a signed 128-bit integer is -// forthcoming. +// This header file defines 128-bit integer types. +// +// Currently, this file defines `uint128`, an unsigned 128-bit integer; a signed +// 128-bit integer is forthcoming. #ifndef ABSL_NUMERIC_INT128_H_ #define ABSL_NUMERIC_INT128_H_ @@ -37,6 +38,7 @@ namespace absl { + // uint128 // // An unsigned 128-bit integer type. The API is meant to mimic an intrinsic type |