Merge branch 'master' of github.com:msgpack/msgpack

This commit is contained in:
tokuhirom 2010-09-20 23:36:50 +09:00
commit 220d76c974

View File

@ -87,7 +87,7 @@ BEGIN {
return unpack( 'd', pack( 'N2', @v[1,0] ) );
};
*unpack_int64 = $unpack_int64_slow ||_sub {
*unpack_int64 = $unpack_int64_slow || sub {
my @v = unpack( 'V*', substr( $_[0], $_[1], 8 ) );
return unpack( 'q', pack( 'N2', @v[1,0] ) );
};