File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -47,8 +47,8 @@ auto KeysView(const Range& range) -> KeysRange<decltype(std::begin(range))> {
47
47
}
48
48
49
49
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))> {
52
52
auto keys_begin = util::make_iterator_first (range.lower_bound (key));
53
53
auto keys_end = util::make_iterator_first (std::end (range));
54
54
return util::make_range (keys_begin, keys_end);
Original file line number Diff line number Diff line change @@ -190,8 +190,8 @@ auto RankedInvokeHash(const Range& range, HashChoice<3>)
190
190
* value can itself be hashed.
191
191
*/
192
192
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)) {
195
195
return option ? InvokeHash (*option) : -1171 ;
196
196
}
197
197
@@ -202,8 +202,8 @@ size_t RankedInvokeHash(K value, HashChoice<5>) {
202
202
}
203
203
204
204
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)) {
207
207
return ptr ? InvokeHash (*ptr) : 23631 ;
208
208
}
209
209
You can’t perform that action at this time.
0 commit comments