##// END OF EJS Templates
rust-dirstate: remove repetition in array literal
Yuya Nishihara -
r43064:8f088119 default
parent child Browse files
Show More
@@ -20,10 +20,7 b' use std::time::Duration;'
20
20
21 pub type FileFoldMap = HashMap<Vec<u8>, Vec<u8>>;
21 pub type FileFoldMap = HashMap<Vec<u8>, Vec<u8>>;
22
22
23 const NULL_REVISION: [u8; 20] = [
23 const NULL_REVISION: [u8; 20] = [0; 20];
24 b'\0', b'\0', b'\0', b'\0', b'\0', b'\0', b'\0', b'\0', b'\0', b'\0',
25 b'\0', b'\0', b'\0', b'\0', b'\0', b'\0', b'\0', b'\0', b'\0', b'\0',
26 ];
27 const MTIME_UNSET: i32 = -1;
24 const MTIME_UNSET: i32 = -1;
28 const SIZE_DIRTY: i32 = -2;
25 const SIZE_DIRTY: i32 = -2;
29
26
General Comments 0
You need to be logged in to leave comments. Login now