aboutsummaryrefslogtreecommitdiffstats
path: root/src/db/UniqueTags.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2015-08-24 11:53:30 +0200
committerMax Kellermann <max@duempel.org>2015-08-24 11:53:30 +0200
commitf0b58c6f2463da0b7f509a53d8054d5472504094 (patch)
treefb07d2c89c3ca6d32212a368f8eb9dea02861d88 /src/db/UniqueTags.hxx
parentf3661b19c08ecfce952ab6db25cf27f346cb3b7f (diff)
downloadmpd-f0b58c6f2463da0b7f509a53d8054d5472504094.tar.gz
mpd-f0b58c6f2463da0b7f509a53d8054d5472504094.tar.xz
mpd-f0b58c6f2463da0b7f509a53d8054d5472504094.zip
db/UniqueTags, tag/Set, ...: use typedef tag_mask_t
Diffstat (limited to '')
-rw-r--r--src/db/UniqueTags.hxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/db/UniqueTags.hxx b/src/db/UniqueTags.hxx
index b44afe464..b241970f9 100644
--- a/src/db/UniqueTags.hxx
+++ b/src/db/UniqueTags.hxx
@@ -22,8 +22,7 @@
#include "Visitor.hxx"
#include "tag/TagType.h"
-
-#include <stdint.h>
+#include "tag/Mask.hxx"
class Error;
class Database;
@@ -31,7 +30,7 @@ struct DatabaseSelection;
bool
VisitUniqueTags(const Database &db, const DatabaseSelection &selection,
- TagType tag_type, uint32_t group_mask,
+ TagType tag_type, tag_mask_t group_mask,
VisitTag visit_tag,
Error &error);