base: add generic bitset class that can be sized dynamically
Review Request #2804 - Created May 11, 2015 and discarded
| Information | |
|---|---|
| Tony Gutierrez | |
| gem5 | |
| default | |
| Reviewers | |
| Default | |
Changeset 10861:4a178c069ce3 --------------------------- base: add generic bitset class that can be sized dynamically The difference between this class and std::bitset/VectorMask is that the bitset is sized dynamically (you don't need to know at compile time how many bits are in the bitset). This is like the template specialization for std::vector<bool>, but with some extra functionality to test/set membership in ranges, etc.
Posted (May 12, 2015, 9:32 a.m.)
Why not just define these functions for vector<bool> ?
