summaryrefslogtreecommitdiffstats
path: root/src/common/mod.rs
diff options
context:
space:
mode:
authorPaul Masurel <paul.masurel@gmail.com>2017-05-24 10:14:40 +0900
committerPaul Masurel <paul.masurel@gmail.com>2017-05-25 18:17:37 +0900
commitaaf1b2c6b6e7ee5dcd294459666a8720b461e471 (patch)
tree9e2b3c0935398e5532e15236f98de9bb6a295b08 /src/common/mod.rs
parent8a6af2aefa1f1b37f66b660e1b3bd4970a5f703f (diff)
Reorganized code and added documentation.
Diffstat (limited to 'src/common/mod.rs')
-rw-r--r--src/common/mod.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/common/mod.rs b/src/common/mod.rs
index 84b4cad..eef6b28 100644
--- a/src/common/mod.rs
+++ b/src/common/mod.rs
@@ -1,7 +1,6 @@
mod serialize;
mod timer;
mod vint;
-mod counting_writer;
pub mod bitpacker;
pub use self::serialize::BinarySerializable;
@@ -9,7 +8,6 @@ pub use self::timer::Timing;
pub use self::timer::TimerTree;
pub use self::timer::OpenTimer;
pub use self::vint::VInt;
-pub use self::counting_writer::CountingWriter;
use std::io;