]> git.lizzy.rs Git - rust.git/commit
auto merge of #7934 : sfackler/rust/smallintset, r=alexcrichton
authorbors <bors@rust-lang.org>
Tue, 23 Jul 2013 10:04:39 +0000 (03:04 -0700)
committerbors <bors@rust-lang.org>
Tue, 23 Jul 2013 10:04:39 +0000 (03:04 -0700)
commitdfdb72dbbec1a26010b9222db1607e323bb33699
tree86c4ef5befd3b9015c7b1d0273e8bc6f7c208f02
parent0a5d1a1b81ccb839b44c9251d9ffad2838179f1f
parent8eb6d2d8296fb91b91c50c2e1d127a69a57be714
auto merge of #7934 : sfackler/rust/smallintset, r=alexcrichton

SmallIntSet is equivalent to BitvSet but with 64 times the memory
overhead. There's no reason for it to exist.

SmallIntSet's overhead should really only be 8 times, but for some
reason, `sys::size_of::<Option<()>>() == 8`, not 1.