about summary refs log tree commit diff
path: root/src/libcore/num
diff options
context:
space:
mode:
authorSean McArthur <sean.monstar@gmail.com>2016-03-04 18:49:43 -0800
committerSean McArthur <sean.monstar@gmail.com>2016-03-20 10:04:55 -0700
commite0945937c4d6786af0b03a11c8cec2c34cde7662 (patch)
tree1a167e7ea6907b8638bd1141a47b81808180f21e /src/libcore/num
parent235d77457d80b549dad3ac36d94f235208a1eafb (diff)
downloadrust-e0945937c4d6786af0b03a11c8cec2c34cde7662.tar.gz
rust-e0945937c4d6786af0b03a11c8cec2c34cde7662.zip
libcore: add Debug implementations to most missing types
Diffstat (limited to 'src/libcore/num')
-rw-r--r--src/libcore/num/flt2dec/mod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libcore/num/flt2dec/mod.rs b/src/libcore/num/flt2dec/mod.rs
index b9a7afc400d..b549f334242 100644
--- a/src/libcore/num/flt2dec/mod.rs
+++ b/src/libcore/num/flt2dec/mod.rs
@@ -222,6 +222,7 @@ impl<'a> Part<'a> {
 
 /// Formatted result containing one or more parts.
 /// This can be written to the byte buffer or converted to the allocated string.
+#[allow(missing_debug_implementations)]
 #[derive(Clone)]
 pub struct Formatted<'a> {
     /// A byte slice representing a sign, either `""`, `"-"` or `"+"`.