[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
1 changed files with 2 additions and 1 deletions

View File

@ -385,7 +385,8 @@ namespace dxvk::bit {
};
BitMask() { }
BitMask()
: m_mask(0) { }
BitMask(uint32_t n)
: m_mask(n) { }