Skip to content

Commit bf87290

Browse files
committed
another fix
1 parent b6b610f commit bf87290

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

library/graphs/bridges_cuts/bcc_callback.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//! https://cp-algorithms.com/graph/cutpoints.html
33
//! @code
44
//! {
5-
//! vector<vector<int>> adj(n);
5+
//! vector<vi> adj(n);
66
//! UF uf(n);
77
//! vector<bool> seen(n);
88
//! bcc_callback(adj, [&](const vi& nodes) {

tests/scripts/grep_clangformat_cppcheck.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ echo "check sz instead of ssize"
3030
grep "ssize" --recursive ../library/ && exit 1
3131

3232
echo "check vi instead of vector<int>"
33-
grep "vector<int>" --recursive ../library/ && exit 1
33+
grep "vector<int>" --recursive ../library/**/*.hpp && exit 1
3434

3535
echo "check begin(arr) instead of arr.begin(), similarly for end, rbegin, rend, empty, size:"
3636
# TODO: remove this define filter if/when we move to -std=c++20

0 commit comments

Comments
 (0)