aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/common/bit_field.h
Commit message (Collapse)AuthorAge
* Merge pull request #914 from yuriks/bitfield-maskGravatar Yuri Kunde Schlesner2015-07-11
|\ | | | | Common: Fix mask generation in BitField
| * Common: Remove redundant masking in BitFieldGravatar Yuri Kunde Schlesner2015-07-10
| | | | | | | | | | For the signed case, the shifts already remove the rest of the value, so ANDing by the mask is redundant.
| * Common: Fix mask generation in BitFieldGravatar Yuri Kunde Schlesner2015-07-10
| | | | | | | | Fixes #913
* | Common: Cleanup key_map includes.Gravatar Emmanuel Gil Peyrot2015-06-28
|/
* Common: Remove common.hGravatar Yuri Kunde Schlesner2015-05-07
|
* Merge pull request #322 from chinhodado/masterGravatar bunnei2014-12-22
|\ | | | | More warning cleanups
* \ Merge pull request #291 from purpasmart96/licenseGravatar bunnei2014-12-21
|\ \ | | | | | | License change
| | * More warning cleanupsGravatar Chin2014-12-21
| |/ |/|
| * License changeGravatar purpasmart962014-12-20
| |
* | BitField: Add an explicit Assign method.Gravatar Tony Wasserka2014-12-20
|/ | | | This is useful when doing crazy stuff like inheriting from BitField.
* bit_field: Fix a typo in the sample usage.Gravatar Lioncash2014-10-25
|
* BitField: Cast enum values to proper integer type.Gravatar Tony Wasserka2014-07-16
|
* BitField: Add a static_assert.Gravatar Tony Wasserka2014-07-16
| | | | 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.
* BitField: Delete copy assignment to prevent obscure bugs.Gravatar Tony Wasserka2014-07-16
| | | | Cf. https://github.com/dolphin-emu/dolphin/pull/483
* BitField: Add an explicit evaluation method.Gravatar Tony Wasserka2014-07-16
| | | | 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.
* removed incorrect dolphin copyright lineGravatar bunnei2014-05-08
|
* fixed include of common in bit_field.hGravatar bunnei2014-05-07
|
* added BitField to commonGravatar bunnei2014-05-07