##// END OF EJS Templates
rust: add comment about lack of wdirrev handling...
Yuya Nishihara -
r41337:13c23396 stable
parent child Browse files
Show More
@@ -896,6 +896,8 b' class revlog(object):'
896 common = [nullrev]
896 common = [nullrev]
897
897
898 if rustext is not None:
898 if rustext is not None:
899 # TODO: WdirUnsupported should be raised instead of GraphError
900 # if common includes wdirrev
899 return rustext.ancestor.MissingAncestors(self.index, common)
901 return rustext.ancestor.MissingAncestors(self.index, common)
900 return ancestor.incrementalmissingancestors(self.parentrevs, common)
902 return ancestor.incrementalmissingancestors(self.parentrevs, common)
901
903
General Comments 0
You need to be logged in to leave comments. Login now