Skip to content

Commit 839291e

Browse files
committed
revert
1 parent 0a42f02 commit 839291e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/trees/linear_lca.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ int lsb(int x) { return x & -x; }
1414
struct linear_lca {
1515
int n;
1616
vi d, in, asc, head;
17-
linear_lca(const vector<basic_string<int>>& adj):
17+
linear_lca(const auto& adj):
1818
n(sz(adj)), d(n), in(n), asc(n), head(n + 1) {
1919
vector<pii> order;
2020
auto dfs = [&](auto&& self, int v, int p) -> void {

0 commit comments

Comments
 (0)