cargo fmt

This commit is contained in:
Stephen Akridge
2018-06-05 12:24:39 -07:00
committed by Greg Fitzgerald
parent f511ac9be7
commit a06535d7ed
4 changed files with 100 additions and 30 deletions

View File

@@ -275,7 +275,9 @@ const BLOB_FLAGS_END: usize = BLOB_ID_END + size_of::<u32>();
const BLOB_SIZE_END: usize = BLOB_FLAGS_END + size_of::<u64>();
macro_rules! align {
($x:expr, $align: expr) => ($x + ($align - 1) & !($align - 1));
($x:expr, $align:expr) => {
$x + ($align - 1) & !($align - 1)
};
}
pub const BLOB_FLAG_IS_CODING: u32 = 0x1;