Merge pull request #108 from dswd/patch-1

Make the TupleVisitors public
This commit is contained in:
Erick Tryzelaar
2015-07-18 21:21:09 -04:00
+1 -1
View File
@@ -567,7 +567,7 @@ macro_rules! tuple_impls {
() => {}; () => {};
($($visitor:ident => ($($name:ident),+),)+) => { ($($visitor:ident => ($($name:ident),+),)+) => {
$( $(
struct $visitor<$($name,)+> { pub struct $visitor<$($name,)+> {
marker: PhantomData<($($name,)+)>, marker: PhantomData<($($name,)+)>,
} }