Skip to content

Commit a31f951

Browse files
committed
Add missed formatting changes
1 parent f569f94 commit a31f951

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Firestore/core/src/immutable/keys_view.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ auto KeysView(const Range& range) -> KeysRange<decltype(std::begin(range))> {
4747
}
4848

4949
template <typename Range, typename K>
50-
auto KeysViewFrom(const Range& range, const K& key)
51-
-> KeysRange<decltype(range.lower_bound(key))> {
50+
auto KeysViewFrom(const Range& range,
51+
const K& key) -> KeysRange<decltype(range.lower_bound(key))> {
5252
auto keys_begin = util::make_iterator_first(range.lower_bound(key));
5353
auto keys_end = util::make_iterator_first(std::end(range));
5454
return util::make_range(keys_begin, keys_end);

Firestore/core/src/util/hashing.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,8 @@ auto RankedInvokeHash(const Range& range, HashChoice<3>)
190190
* value can itself be hashed.
191191
*/
192192
template <typename K>
193-
auto RankedInvokeHash(const absl::optional<K>& option, HashChoice<4>)
194-
-> decltype(InvokeHash(*option)) {
193+
auto RankedInvokeHash(const absl::optional<K>& option,
194+
HashChoice<4>) -> decltype(InvokeHash(*option)) {
195195
return option ? InvokeHash(*option) : -1171;
196196
}
197197

@@ -202,8 +202,8 @@ size_t RankedInvokeHash(K value, HashChoice<5>) {
202202
}
203203

204204
template <typename K>
205-
auto RankedInvokeHash(const std::unique_ptr<K>& ptr, HashChoice<6>)
206-
-> decltype(InvokeHash(*ptr)) {
205+
auto RankedInvokeHash(const std::unique_ptr<K>& ptr,
206+
HashChoice<6>) -> decltype(InvokeHash(*ptr)) {
207207
return ptr ? InvokeHash(*ptr) : 23631;
208208
}
209209

0 commit comments

Comments
 (0)