1
0
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:
Joshua Ashton 2022-11-16 15:50:04 +00:00 committed by Philip Rebohle
parent 287412f746
commit e037d24017

View File

@ -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) { }