Skip to content

Commit 4b79c5f

Browse files
committed
0.7.2 don’t ship commented code :)
1 parent acf4d2a commit 4b79c5f

File tree

1 file changed

+0
-22
lines changed

1 file changed

+0
-22
lines changed

src/lib.rs

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -302,28 +302,6 @@ macro_rules! object {
302302
})
303303
}
304304

305-
// macro_rules! partial_eq {
306-
// ($to:ident, $from:ty, $self_cast:expr => $from_cast:expr) => {
307-
// impl PartialEq<$from> for JsonValue {
308-
// fn eq(&self, other: &$from) -> bool {
309-
// match *self {
310-
// JsonValue::$to(ref value) => value == $from_cast,
311-
// _ => false
312-
// }
313-
// }
314-
// }
315-
316-
// impl<'a> PartialEq<JsonValue> for $from {
317-
// fn eq(&self, other: &JsonValue) -> bool {
318-
// match *other {
319-
// JsonValue::$to(ref value) => value == $self_cast,
320-
// _ => false
321-
// }
322-
// }
323-
// }
324-
// }
325-
// }
326-
327305
macro_rules! implement_extras {
328306
($from:ty) => {
329307
impl From<Option<$from>> for JsonValue {

0 commit comments

Comments
 (0)