summaryrefslogtreecommitdiffstats
path: root/src/common/bitpacker.rs
diff options
context:
space:
mode:
authorPaul Masurel <paul.masurel@gmail.com>2018-12-17 19:12:38 +0900
committerPaul Masurel <paul.masurel@gmail.com>2018-12-17 19:12:38 +0900
commite68775d71c2224d8119275e6a014a47bb037712b (patch)
treed8b3dd749df9ffd78b4cc7b80019564f17166e6a /src/common/bitpacker.rs
parentdcc92d287ebb488854a95aa1f00455e6de3428dd (diff)
Format and update murmurhash32 version
Diffstat (limited to 'src/common/bitpacker.rs')
-rw-r--r--src/common/bitpacker.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/bitpacker.rs b/src/common/bitpacker.rs
index 4b776ac..e84fa15 100644
--- a/src/common/bitpacker.rs
+++ b/src/common/bitpacker.rs
@@ -1,6 +1,6 @@
+use byteorder::{ByteOrder, LittleEndian, WriteBytesExt};
use std::io;
use std::ops::Deref;
-use byteorder::{WriteBytesExt, ByteOrder, LittleEndian};
pub(crate) struct BitPacker {
mini_buffer: u64,