Remove unused stability levels from compiler

This commit is contained in:
Brian Anderson 2015-01-12 16:31:11 -08:00
parent 6869645e86
commit 90aa581cff
5 changed files with 8 additions and 32 deletions

View file

@ -845,7 +845,10 @@ pub mod writer {
// Set to true to generate more debugging in EBML code.
// Totally lame approach.
#[cfg(not(ndebug))]
static DEBUG: bool = true;
#[cfg(ndebug)]
static DEBUG: bool = false;
impl<'a, W: Writer + Seek> Encoder<'a, W> {
// used internally to emit things like the vector length and so on