diff options
author | David Robillard <d@drobilla.net> | 2011-11-06 19:56:38 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-11-06 19:56:38 +0000 |
commit | ad2bddcbee17a637a73d24ede3ecffde8d499b62 (patch) | |
tree | dc84f6404ba74cd3d9805e9b3ebcb495c573268a /ext/atom.lv2/atom-helpers.h | |
parent | ee319f2c45766164eab47e0b5949c80e0c464ada (diff) | |
download | lv2-ad2bddcbee17a637a73d24ede3ecffde8d499b62.tar.xz |
Lint.
Diffstat (limited to 'ext/atom.lv2/atom-helpers.h')
-rw-r--r-- | ext/atom.lv2/atom-helpers.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/atom.lv2/atom-helpers.h b/ext/atom.lv2/atom-helpers.h index 71c16e9..ae4bc6f 100644 --- a/ext/atom.lv2/atom-helpers.h +++ b/ext/atom.lv2/atom-helpers.h @@ -170,8 +170,8 @@ lv2_atom_is_a(LV2_Atom* object, /** A single entry in an Object query. */ typedef struct { - uint32_t key; ///< Key to query (input set by user) - const LV2_Atom* value; ///< Found value (output set by query function) + uint32_t key; /**< Key to query (input set by user) */ + const LV2_Atom* value; /**< Found value (output set by query function) */ } LV2_Object_Query; /** @@ -189,7 +189,7 @@ lv2_object_query(const LV2_Atom* object, LV2_Object_Query* query) int matches = 0; int n_queries = 0; - // Count number of query keys so we can short-circuit when done + /* Count number of query keys so we can short-circuit when done */ for (LV2_Object_Query* q = query; q->key; ++q) ++n_queries; |