0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 00:56:44 +01:00

elim warning on windows

This commit is contained in:
Dwight 2010-03-01 17:55:44 -05:00
parent 75457332d5
commit dc54b5b6e0

View File

@ -166,7 +166,7 @@ namespace mongo {
( (boost::uint64_t)(boost::uint32_t)getNumber( o , "top" ) << 32 ) +
( boost::uint32_t)( getNumber( o , "bottom" ) );
} else {
val = getNumber( o, "floatApprox" );
val = (boost::uint64_t) getNumber( o, "floatApprox" );
}
return val;
}