diff options
| author | Nicholas Nethercote <n.nethercote@gmail.com> | 2023-10-06 09:50:23 +1100 |
|---|---|---|
| committer | Nicholas Nethercote <n.nethercote@gmail.com> | 2023-10-06 10:30:01 +1100 |
| commit | 5f69ca62f2ceb9fab475c05e6df426fcc26cb77d (patch) | |
| tree | be27f3b8cc8f914ec963b0b8ff69b33bf92f00b4 /compiler/rustc_serialize/src/lib.rs | |
| parent | f703475b4eaef5c65a0891a9e27d3945aec4ced6 (diff) | |
| download | rust-5f69ca62f2ceb9fab475c05e6df426fcc26cb77d.tar.gz rust-5f69ca62f2ceb9fab475c05e6df426fcc26cb77d.zip | |
rustc_serialize: merge `collection_impls.rs` into `serialize.rs`.
`serialize.rs` has the `Encodable`/`Decodable` impls for lots of basic types, including `Vec`. `collection_impls` has it for lots of collection types. The distinction isn't really meaningful, and it's simpler to have them all in a single file.
Diffstat (limited to 'compiler/rustc_serialize/src/lib.rs')
| -rw-r--r-- | compiler/rustc_serialize/src/lib.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/rustc_serialize/src/lib.rs b/compiler/rustc_serialize/src/lib.rs index bd306eed85a..5360aa9ea6a 100644 --- a/compiler/rustc_serialize/src/lib.rs +++ b/compiler/rustc_serialize/src/lib.rs @@ -21,7 +21,6 @@ pub use self::serialize::{Decodable, Decoder, Encodable, Encoder}; -mod collection_impls; mod serialize; pub mod leb128; |
