File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 99 - [ ] bugprone-multi-level-implicit-pointer-conversion (4)
1010 - [ ] bugprone-narrowing-conversions (34)
1111 - [x] [ bugprone-random-generator-seed] ( https://github.com/Framework-R-D/phlex/pull/490 ) (1)
12- - [ ] bugprone-reserved-identifier (1)
12+ - [x] [ bugprone-reserved-identifier] ( https://github.com/Framework-R-D/phlex/pull/489 ) (1)
1313 - [ ] bugprone-return-const-ref-from-parameter (163)
1414 - [ ] bugprone-throwing-static-initialization (11)
1515 - [ ] bugprone-unchecked-optional-access (15)
Original file line number Diff line number Diff line change @@ -216,8 +216,8 @@ namespace phlex::experimental {
216216 return matched_flushing_entries_.find (layer_hash)->second ;
217217 }
218218
219- auto [ routing_it, _] = matched_routing_entries_.try_emplace (layer_hash);
220- auto [ flushing_it, __] = matched_flushing_entries_.try_emplace (layer_hash);
219+ auto routing_it = matched_routing_entries_.try_emplace (layer_hash). first ;
220+ auto flushing_it = matched_flushing_entries_.try_emplace (layer_hash). first ;
221221
222222 auto const layer_path = index->layer_path ();
223223
You can’t perform that action at this time.
0 commit comments