Fixed String and Option conflicts for the latest Rust

This commit is contained in:
kvark
2014-09-29 21:50:24 -04:00
parent 119bb0f590
commit bfd1fb0ee9
4 changed files with 54 additions and 53 deletions
+2 -2
View File
@@ -11,7 +11,7 @@
use std::collections::TreeMap;
use std::str::StrAllocating;
use super::{Json, List, Object, ToJson};
use super::{Json, JsonObject, List, Object, ToJson};
pub struct ListBuilder {
list: Vec<Json>,
@@ -44,7 +44,7 @@ impl ListBuilder {
}
pub struct ObjectBuilder {
object: Object,
object: JsonObject,
}
impl ObjectBuilder {