tag/Mask: switch to 64 bit because have we 34 tags now and 32 bits are not enough

This commit is contained in:
Max Kellermann 2023-10-08 10:02:45 +02:00
parent 2859845567
commit f49d4ef4ad
1 changed files with 1 additions and 1 deletions

View File

@ -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 */