1
Fork 0

Move finish out of the Encoder trait.

This simplifies things, but requires making `CacheEncoder` non-generic.
This commit is contained in:
Nicholas Nethercote 2022-06-08 07:26:35 +10:00
parent 1acbe7573d
commit dc08bc51f2
13 changed files with 51 additions and 111 deletions

View file

@ -210,7 +210,7 @@ impl CodegenResults {
encoder.emit_raw_bytes(&RLINK_VERSION.to_be_bytes());
encoder.emit_str(RUSTC_VERSION.unwrap());
Encodable::encode(codegen_results, &mut encoder);
encoder.finish().unwrap()
encoder.finish()
}
pub fn deserialize_rlink(data: Vec<u8>) -> Result<Self, String> {