aboutsummaryrefslogtreecommitdiffstats
path: root/src/tag/Set.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/tag/Set.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/tag/Set.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tag/Set.hxx b/src/tag/Set.hxx
index aab994008..587b25a3a 100644
--- a/src/tag/Set.hxx
+++ b/src/tag/Set.hxx
@@ -22,11 +22,11 @@
#include "Compiler.h"
#include "Tag.hxx"
+#include "Mask.hxx"
#include <set>
#include <string.h>
-#include <stdint.h>
/**
* Helper class for #TagSet which compares two #Tag objects.
@@ -59,15 +59,15 @@ struct TagLess {
class TagSet : public std::set<Tag, TagLess> {
public:
void InsertUnique(const Tag &tag,
- TagType type, uint32_t group_mask);
+ TagType type, tag_mask_t group_mask);
private:
void InsertUnique(const Tag &src, TagType type, const char *value,
- uint32_t group_mask);
+ tag_mask_t group_mask);
bool CheckUnique(TagType dest_type,
const Tag &tag, TagType src_type,
- uint32_t group_mask);
+ tag_mask_t group_mask);
};
#endif