Fixing remaining warnings and errors throughout
This commit is contained in:
parent
f9a32cdabc
commit
c765a8e7ad
22 changed files with 185 additions and 277 deletions
|
@ -588,8 +588,8 @@ impl BytesContainer for InternedString {
|
|||
}
|
||||
|
||||
impl fmt::Show for InternedString {
|
||||
fn fmt(obj: &InternedString, f: &mut fmt::Formatter) {
|
||||
write!(f.buf, "{}", obj.string.as_slice());
|
||||
fn fmt(obj: &InternedString, f: &mut fmt::Formatter) -> fmt::Result {
|
||||
write!(f.buf, "{}", obj.string.as_slice())
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue