about summary refs log tree commit diff
path: root/src/libextra/ebml.rs
diff options
context:
space:
mode:
authorKiet Tran <ktt3ja@gmail.com>2013-12-08 02:55:28 -0500
committerKiet Tran <ktt3ja@gmail.com>2013-12-08 02:55:28 -0500
commit1755408d1a58684b6c9bce11aeceb18a1ec2d66e (patch)
tree9d781272021fe4ead382ffc8f87c048f194e25b5 /src/libextra/ebml.rs
parentc06dd0e0afb4b78ab4e482a7488adcf1c865bd19 (diff)
downloadrust-1755408d1a58684b6c9bce11aeceb18a1ec2d66e.tar.gz
rust-1755408d1a58684b6c9bce11aeceb18a1ec2d66e.zip
Remove dead codes
Diffstat (limited to 'src/libextra/ebml.rs')
-rw-r--r--src/libextra/ebml.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/libextra/ebml.rs b/src/libextra/ebml.rs
index aadb93f2e24..5014c42f8d8 100644
--- a/src/libextra/ebml.rs
+++ b/src/libextra/ebml.rs
@@ -17,17 +17,6 @@ use std::str;
 //     http://www.matroska.org/technical/specs/rfc/index.html
 
 // Common data structures
-struct EbmlTag {
-    id: uint,
-    size: uint,
-}
-
-struct EbmlState {
-    ebml_tag: EbmlTag,
-    tag_pos: uint,
-    data_pos: uint,
-}
-
 #[deriving(Clone)]
 pub struct Doc {
     data: @~[u8],