]> git.ipfire.org Git - thirdparty/knot-resolver.git/commitdiff
doc: fixed broken breathe mistaking define for func v1.0.0-beta3
authorMarek Vavrusa <marek@vavrusa.com>
Sat, 30 Jan 2016 15:03:15 +0000 (15:03 +0000)
committerMarek Vavrusa <marek@vavrusa.com>
Sat, 30 Jan 2016 15:03:15 +0000 (15:03 +0000)
breathe failed to process the typedef thinking
the macro expansion was a function pointer

daemon/engine.h
daemon/network.h
daemon/worker.h
lib/resolve.h
lib/rplan.h
lib/utils.h

index d9755157bf6e619b541b58f942125ba478b4ab14..5e8e12e95e3259955e55a6d33df9aa17713d24cd 100644 (file)
@@ -46,8 +46,9 @@ struct storage_api {
        void *(*opts_create)(const char *, size_t); /**< Storage options factory */
 };
 
-/** @internal Array of cache backend options. */
+/** @cond internal Array of cache backend options. */
 typedef array_t(struct storage_api) storage_registry_t;
+/* @endcond */
 
 struct engine {
     struct kr_context resolver;
index 93c80ce04a39b86d884420f66aec1682e7dfba7b..84797e8dc53ac51825f54a63c05d3158eb47b422 100644 (file)
@@ -34,7 +34,9 @@ struct endpoint {
     uint16_t flags;
 };
 
+/** @cond internal Array of endpoints */
 typedef array_t(struct endpoint*) endpoint_array_t;
+/* @endcond */
 
 struct network {
     uv_loop_t *loop;
index eed855d82d72a72e1b86915ac4736ec498c9298e..c598c7ba6cb8b8bb222877a41e6de92e4b8cb375 100644 (file)
@@ -20,7 +20,7 @@
 #include "lib/generic/array.h"
 #include "lib/generic/map.h"
 
-/* @cond internal Freelist of available mempools. */
+/** @cond internal Freelist of available mempools. */
 typedef array_t(void *) mp_freelist_t;
 /* @endcond */
 
index d79b58a6c9ef19ff989c0bb5c480f9d6572b029c..3fb4aa622966a7324d12e2f89ca3cc5bbc849d4c 100644 (file)
@@ -69,7 +69,7 @@
  * @endcode
  */
 
-/* @cond internal Array of modules. */
+/** @cond internal Array of modules. */
 typedef array_t(struct kr_module *) module_array_t;
 /* @endcond */
 
index 836dcb76cc44d51eae5e1242a5f4e5b6b6614ea2..baf4728ac72e8017b171825fd0d2349d0fca6e46 100644 (file)
@@ -73,8 +73,9 @@ struct kr_query {
        struct kr_layer_pickle *deferred;
 };
 
-/** @internal Array of queries. */
+/** @cond internal Array of queries. */
 typedef array_t(struct kr_query *) kr_qarray_t;
+/* @endcond */
 
 /**
  * Query resolution plan structure.
index 698bd6e0772c1bb17b2376da9238690fe1879637..249655f3e446d7eb19d092bd193c5178f6cd3e7a 100644 (file)
@@ -74,7 +74,7 @@ static inline long time_diff(struct timeval *begin, struct timeval *end) {
     return res.tv_sec * 1000 + res.tv_usec / 1000;
 }
 
-/** @cond Array types */
+/** @cond internal Array types */
 struct kr_context;
 typedef array_t(knot_rrset_t *) rr_array_t;
 /* @endcond */