Skip to content

Commit 6c6f592

Browse files
committed
fix clang-tidy
1 parent 92ceeed commit 6c6f592

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/library_checker_aizu_tests/graphs/bcc_callback_aizu_two_edge_cc.test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ int main() {
1818
bcc_callback(adj, [&](const vi& nodes) {
1919
assert(sz(nodes) >= 2);
2020
if (sz(nodes) == 2)
21-
bridges.push_back({min(nodes[0], nodes[1]),
22-
max(nodes[0], nodes[1])});
21+
bridges.emplace_back(min(nodes[0], nodes[1]),
22+
max(nodes[0], nodes[1]));
2323
});
2424
ranges::sort(bridges);
2525
for (auto [u, v] : bridges)

0 commit comments

Comments
 (0)