Fix for closure changes

This commit is contained in:
Steven Fackler 2015-02-06 08:56:23 -08:00
parent 4a93618293
commit f702cc03c2

View File

@ -63,7 +63,7 @@ macro_rules! from_map_impl {
macro_rules! from_raw_from_impl {
($($expected:pat),+; $t:ty) => (
from_map_impl!($($expected),+; $t, |&mut: ty, mut buf: &[u8]| {
from_map_impl!($($expected),+; $t, |ty, mut buf: &[u8]| {
use types::RawFromSql;
RawFromSql::raw_from_sql(ty, &mut buf)