diff options
author | Craig Tiller <ctiller@google.com> | 2015-08-18 09:33:44 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2015-08-18 09:33:44 -0700 |
commit | d6c98df792198c5c9687ed35a676efbc5e621e0f (patch) | |
tree | d8dae211eb45035d095e4549ab5af439e67b22dc /src/cpp/common | |
parent | bb1c795f998f052f854a6e1aeebff44e293a29f4 (diff) |
clang-format all source
Diffstat (limited to 'src/cpp/common')
-rw-r--r-- | src/cpp/common/auth_property_iterator.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/cpp/common/auth_property_iterator.cc b/src/cpp/common/auth_property_iterator.cc index ba88983515..d3bfd5cb6b 100644 --- a/src/cpp/common/auth_property_iterator.cc +++ b/src/cpp/common/auth_property_iterator.cc @@ -64,8 +64,7 @@ AuthPropertyIterator AuthPropertyIterator::operator++(int) { return tmp; } -bool AuthPropertyIterator::operator==( - const AuthPropertyIterator& rhs) const { +bool AuthPropertyIterator::operator==(const AuthPropertyIterator& rhs) const { if (property_ == nullptr || rhs.property_ == nullptr) { return property_ == rhs.property_; } else { @@ -73,8 +72,7 @@ bool AuthPropertyIterator::operator==( } } -bool AuthPropertyIterator::operator!=( - const AuthPropertyIterator& rhs) const { +bool AuthPropertyIterator::operator!=(const AuthPropertyIterator& rhs) const { return !operator==(rhs); } |