rust/hg-core/src/dirstate.rs
changeset 47519 b68d61af85a9
parent 47511 eaae39894312
child 47521 abed645b8e96
equal deleted inserted replaced
47518:f6f25ab6bfc8 47519:b68d61af85a9
    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 const MTIME_UNSET: i32 = -1;
    80 pub const MTIME_UNSET: i32 = -1;
    81 
    81 
    82 /// A `DirstateEntry` with a size of `-2` means that it was merged from the
    82 /// 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
    83 /// other parent. This allows revert to pick the right status back during a
    84 /// merge.
    84 /// merge.
    85 pub const SIZE_FROM_OTHER_PARENT: i32 = -2;
    85 pub const SIZE_FROM_OTHER_PARENT: i32 = -2;