Skip to content

Commit 2278dcf

Browse files
committed
Fix lint.
1 parent c61a669 commit 2278dcf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

torch_xla/csrc/dynamic_shape_detector.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,8 @@ bool TrieNode::MaybeSplitAt(std::size_t matched) {
169169
}
170170

171171
// This node's common_sequence_ will be whatever the prefix was.
172-
common_sequence_.erase(common_sequence_.begin() + matched, common_sequence_.end());
172+
common_sequence_.erase(common_sequence_.begin() + matched,
173+
common_sequence_.end());
173174
return did_split;
174175
}
175176

0 commit comments

Comments
 (0)