summaryrefslogtreecommitdiffstats
path: root/src/common/mod.rs
diff options
context:
space:
mode:
authorPaul Masurel <paul.masurel@gmail.com>2016-10-16 15:45:19 +0900
committerPaul Masurel <paul.masurel@gmail.com>2016-10-16 17:04:45 +0900
commit2b7444b11aee12a7cd46a6548cde9cd056997823 (patch)
tree0c220ea2d7f6262f2c9a1946cb087a15a3e82fee /src/common/mod.rs
parente5b51e57b46cc27d6f8ff6567e877ef97dc4b695 (diff)
bug/4 Removed race condition in SegmentUpdater
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 918a740..77ff67e 100644
--- a/src/common/mod.rs
+++ b/src/common/mod.rs
@@ -1,14 +1,12 @@
mod serialize;
mod timer;
mod vint;
-mod living_counter_latch;
pub use self::serialize::BinarySerializable;
pub use self::timer::Timing;
pub use self::timer::TimerTree;
pub use self::timer::OpenTimer;
pub use self::vint::VInt;
-pub use self::living_counter_latch::LivingCounterLatch;
use std::io;