From f49d4ef4ad0ae95bde0357a2c8bd3456e77a7798 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 8 Oct 2023 10:02:45 +0200 Subject: [PATCH] tag/Mask: switch to 64 bit because have we 34 tags now and 32 bits are not enough --- src/tag/Mask.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tag/Mask.hxx b/src/tag/Mask.hxx index ea1bccc90..0caf66ad5 100644 --- a/src/tag/Mask.hxx +++ b/src/tag/Mask.hxx @@ -8,7 +8,7 @@ #include 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 */