mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
[util] Default initialize BitMask to 0
Found via an MSVC warning, may not fix anything, but good to do anyway.
This commit is contained in:
parent
287412f746
commit
e037d24017
1 changed files with 2 additions and 1 deletions
|
@ -385,7 +385,8 @@ namespace dxvk::bit {
|
|||
|
||||
};
|
||||
|
||||
BitMask() { }
|
||||
BitMask()
|
||||
: m_mask(0) { }
|
||||
|
||||
BitMask(uint32_t n)
|
||||
: m_mask(n) { }
|
||||
|
|
Loading…
Add table
Reference in a new issue