fix for 1.8, 1.9 and stable

This commit is contained in:
Oliver Schneider
2016-07-21 10:11:04 +02:00
parent 4280dd466d
commit 124bacd871
6 changed files with 226 additions and 53 deletions
-1
View File
@@ -14,7 +14,6 @@ use core::fmt;
/// Macro helper to not have to re-implement all the defaulted methods.
/// Every given method ignores all arguments and forwards to `deserialize`.
/// Note that `deserialize_enum` simply returns an `Error::invalid_type`.
#[macro_export]
macro_rules! de_forward_to_deserialize {
($($func:ident),*) => {
$(de_forward_to_deserialize!{func: $func})*