mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-01-19 14:52:10 +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
@ -385,7 +385,8 @@ namespace dxvk::bit {
|
|||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
BitMask() { }
|
BitMask()
|
||||||
|
: m_mask(0) { }
|
||||||
|
|
||||||
BitMask(uint32_t n)
|
BitMask(uint32_t n)
|
||||||
: m_mask(n) { }
|
: m_mask(n) { }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user