rust/hg-core/src/dirstate.rs
changeset 47521 abed645b8e96
parent 47519 b68d61af85a9
child 47683 284a20269a97
equal deleted inserted replaced
47520:5decb7a49bb6 47521:abed645b8e96
    75     size: unaligned::I32Be,
    75     size: unaligned::I32Be,
    76     mtime: unaligned::I32Be,
    76     mtime: unaligned::I32Be,
    77     length: unaligned::I32Be,
    77     length: unaligned::I32Be,
    78 }
    78 }
    79 
    79 
       
    80 pub const V1_RANGEMASK: i32 = 0x7FFFFFFF;
       
    81 
    80 pub const MTIME_UNSET: i32 = -1;
    82 pub const MTIME_UNSET: i32 = -1;
    81 
    83 
    82 /// A `DirstateEntry` with a size of `-2` means that it was merged from the
    84 /// A `DirstateEntry` with a size of `-2` means that it was merged from the
    83 /// other parent. This allows revert to pick the right status back during a
    85 /// other parent. This allows revert to pick the right status back during a
    84 /// merge.
    86 /// merge.