summaryrefslogtreecommitdiffstats
path: root/src/pulsecore/idxset.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2009-06-06 15:30:24 +0200
committerLennart Poettering <lennart@poettering.net>2009-06-06 15:30:24 +0200
commit496be212ad645999647c432a856c906b86d41487 (patch)
tree1484f10758c161597850ae95e137de5e02487793 /src/pulsecore/idxset.h
parente84644aa88acd7158bb174946dbff630ff2389ad (diff)
hashmap: introduce PA_HASHMAP_FOREACH macro
Diffstat (limited to 'src/pulsecore/idxset.h')
-rw-r--r--src/pulsecore/idxset.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pulsecore/idxset.h b/src/pulsecore/idxset.h
index 6b9ff472..a6179fcf 100644
--- a/src/pulsecore/idxset.h
+++ b/src/pulsecore/idxset.h
@@ -103,7 +103,7 @@ unsigned pa_idxset_size(pa_idxset*s);
/* Return TRUE of the idxset is empty */
pa_bool_t pa_idxset_isempty(pa_idxset *s);
-
+/* A macro to ease iteration through all entries */
#define PA_IDXSET_FOREACH(e, s, idx) \
for ((e) = pa_idxset_first((s), &(idx)); (e); (e) = pa_idxset_next((s), &(idx)))