summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--graph/LCA_sparse.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/graph/LCA_sparse.cpp b/graph/LCA_sparse.cpp
index 2a38528..a56dafa 100644
--- a/graph/LCA_sparse.cpp
+++ b/graph/LCA_sparse.cpp
@@ -28,5 +28,5 @@ struct LCA {
return visited[st.queryIdempotent(first[a], first[b] + 1)];
}
- ll getDepth(int a) {eturn depth[first[a]];}
+ ll getDepth(int a) {return depth[first[a]];}
};