diff options
author | Abseil Team <absl-team@google.com> | 2022-09-16 15:38:23 -0700 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2022-09-16 15:39:08 -0700 |
commit | 6b7b11a97fc72849f74610ee4d53403ad417d3cd (patch) | |
tree | 63beb1336177668d0bd05a293fe5b79ce1e72b5e | |
parent | ab2e2c4f6062999afaf960759dfccb77f350c702 (diff) |
Add the fact that CHECK_OK exits the program to the comment of CHECK_OK.
PiperOrigin-RevId: 474916555
Change-Id: Ie6fc9186006280e4db3730ea67c2d99b6faff121
-rw-r--r-- | absl/log/check.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/log/check.h b/absl/log/check.h index 30bf76a0..c7303b8d 100644 --- a/absl/log/check.h +++ b/absl/log/check.h @@ -163,7 +163,7 @@ // `CHECK_OK` and friends validate that the provided `absl::Status` or // `absl::StatusOr<T>` is OK. If it isn't, they print a failure message that -// includes the actual status. +// includes the actual status and terminate the program. // // As with all `DCHECK` variants, `DCHECK_OK` has no effect (not even // evaluating its argument) if `NDEBUG` is enabled. |