From patchwork Sat Aug 17 12:12:06 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [05, of, 11] rust-dirstate: rename NULL_REVISION to NULL_ID which isn't a revision number From: Yuya Nishihara X-Patchwork-Id: 41327 Message-Id: To: mercurial-devel@mercurial-scm.org Date: Sat, 17 Aug 2019 21:12:06 +0900 # HG changeset patch # User Yuya Nishihara # Date 1566016031 -32400 # Sat Aug 17 13:27:11 2019 +0900 # Node ID f61ecf74968aae152d1cdbe946d3f418b0fa1381 # Parent af8265f67d45cfff198c26e639b57e98c0c56287 rust-dirstate: rename NULL_REVISION to NULL_ID which isn't a revision number diff --git a/rust/hg-core/src/dirstate/dirstate_map.rs b/rust/hg-core/src/dirstate/dirstate_map.rs --- a/rust/hg-core/src/dirstate/dirstate_map.rs +++ b/rust/hg-core/src/dirstate/dirstate_map.rs @@ -20,7 +20,7 @@ use std::time::Duration; pub type FileFoldMap = HashMap, Vec>; -const NULL_REVISION: [u8; 20] = [0; 20]; +const NULL_ID: [u8; 20] = [0; 20]; const MTIME_UNSET: i32 = -1; const SIZE_DIRTY: i32 = -2; @@ -69,8 +69,8 @@ impl DirstateMap { self.non_normal_set.clear(); self.other_parent_set.clear(); self.set_parents(DirstateParents { - p1: NULL_REVISION, - p2: NULL_REVISION, + p1: NULL_ID, + p2: NULL_ID, }) } @@ -267,8 +267,8 @@ impl DirstateMap { }; } else if file_contents.is_empty() { parents = DirstateParents { - p1: NULL_REVISION, - p2: NULL_REVISION, + p1: NULL_ID, + p2: NULL_ID, }; } else { return Err(DirstateError::Parse(DirstateParseError::Damaged));