summaryrefslogtreecommitdiff
path: root/src/common/bit_field.h
AgeCommit message (Collapse)Author
2014-12-22Merge pull request #322 from chinhodado/masterbunnei
More warning cleanups
2014-12-21Merge pull request #291 from purpasmart96/licensebunnei
License change
2014-12-21More warning cleanupsChin
2014-12-20License changepurpasmart96
2014-12-20BitField: Add an explicit Assign method.Tony Wasserka
This is useful when doing crazy stuff like inheriting from BitField.
2014-10-25bit_field: Fix a typo in the sample usage.Lioncash
2014-07-16BitField: Cast enum values to proper integer type.Tony Wasserka
2014-07-16BitField: Add a static_assert.Tony Wasserka
Being able to store BitField within unions requires BitField to be of standard layout, which in turn is only given if the underlying type is also has standard layout.
2014-07-16BitField: Delete copy assignment to prevent obscure bugs.Tony Wasserka
Cf. https://github.com/dolphin-emu/dolphin/pull/483
2014-07-16BitField: Add an explicit evaluation method.Tony Wasserka
Sometimes it can be beneficial to use this in places where an explicit cast needs to happen otherwise. By using the evaluation method, it's not necessary anymore to explicitly write the underlying type in this case.
2014-05-08removed incorrect dolphin copyright linebunnei
2014-05-07fixed include of common in bit_field.hbunnei
2014-05-07added BitField to commonbunnei