rust/hg-core/src/dirstate.rs
changeset 47511 eaae39894312
parent 47374 bd88b6bfd8da
child 47519 b68d61af85a9
--- a/rust/hg-core/src/dirstate.rs	Sat Jul 03 20:12:46 2021 +0200
+++ b/rust/hg-core/src/dirstate.rs	Sat Jul 03 19:52:00 2021 +0200
@@ -83,6 +83,9 @@
 /// other parent. This allows revert to pick the right status back during a
 /// merge.
 pub const SIZE_FROM_OTHER_PARENT: i32 = -2;
+/// A special value used for internal representation of special case in
+/// dirstate v1 format.
+pub const SIZE_NON_NORMAL: i32 = -1;
 
 pub type StateMap = FastHashMap<HgPathBuf, DirstateEntry>;
 pub type StateMapIter<'a> = Box<