tag/Mask: switch to 64 bit because have we 34 tags now and 32 bits are not enough
This commit is contained in:
parent
2859845567
commit
f49d4ef4ad
|
@ -8,7 +8,7 @@
|
|||
#include <cstdint>
|
||||
|
||||
class TagMask {
|
||||
typedef uint_least32_t mask_t;
|
||||
using mask_t = uint_least64_t;
|
||||
|
||||
/* the mask must have enough bits to represent all tags
|
||||
supported by MPD */
|
||||
|
|
Loading…
Reference in New Issue