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<
$($name: Deserialize,)+
> $visitor<$($name,)+> {
fn new() -> Self {
pub fn new() -> Self {
$visitor { marker: PhantomData }
}
}