diff options
author | Abseil Team <absl-team@google.com> | 2023-01-19 02:53:37 -0800 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2023-01-19 02:54:32 -0800 |
commit | 0a75e76bda94a45cf606e513f63a1e497b68e2f1 (patch) | |
tree | 7e74e7a7e277aba7462e3d088a966b4571769294 /absl/synchronization | |
parent | 25a85cdd6f55453574f9535ff1be983a1abef841 (diff) |
Minor formatting: Fix misplaced space.
PiperOrigin-RevId: 503110285
Change-Id: I59c48b1486386e2db8fb62cf8bfa1a691865f704
Diffstat (limited to 'absl/synchronization')
-rw-r--r-- | absl/synchronization/mutex.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/synchronization/mutex.cc b/absl/synchronization/mutex.cc index 23919de4..064ccb74 100644 --- a/absl/synchronization/mutex.cc +++ b/absl/synchronization/mutex.cc @@ -2823,7 +2823,7 @@ bool Condition::GuaranteedEqual(const Condition *a, const Condition *b) { // kTrue logic. if (a == nullptr || a->eval_ == nullptr) { return b == nullptr || b->eval_ == nullptr; - }else if (b == nullptr || b->eval_ == nullptr) { + } else if (b == nullptr || b->eval_ == nullptr) { return false; } // Check equality of the representative fields. |