Expose TupleVisitor*::new

This commit is contained in:
Erick Tryzelaar
2015-07-30 20:35:12 -07:00
parent 97528b59cf
commit 2c58a9c11d
+1 -1
View File
@@ -574,7 +574,7 @@ macro_rules! tuple_impls {
impl< impl<
$($name: Deserialize,)+ $($name: Deserialize,)+
> $visitor<$($name,)+> { > $visitor<$($name,)+> {
fn new() -> Self { pub fn new() -> Self {
$visitor { marker: PhantomData } $visitor { marker: PhantomData }
} }
} }