diff options
author | Ron Economos <w6rz@comcast.net> | 2021-10-27 18:59:01 -0700 |
---|---|---|
committer | mormj <34754695+mormj@users.noreply.github.com> | 2021-10-31 16:09:44 -0400 |
commit | 72364a503c8fef2d6f1af8ff2f906045b7c8ef31 (patch) | |
tree | 201d744bba7a80429f4e280d18db48a09c132a2e | |
parent | df767602ecd46f8357a26a8e6131d2abdb2821e0 (diff) |
gnuradio-runtime: Remove Doxygen warnings from custom buffers.
Signed-off-by: Ron Economos <w6rz@comcast.net>
-rw-r--r-- | gnuradio-runtime/include/gnuradio/buffer_double_mapped.h | 2 | ||||
-rw-r--r-- | gnuradio-runtime/include/gnuradio/buffer_single_mapped.h | 2 | ||||
-rw-r--r-- | gnuradio-runtime/include/gnuradio/host_buffer.h | 1 |
3 files changed, 5 insertions, 0 deletions
diff --git a/gnuradio-runtime/include/gnuradio/buffer_double_mapped.h b/gnuradio-runtime/include/gnuradio/buffer_double_mapped.h index 99b85fcc76..8ac7618d3d 100644 --- a/gnuradio-runtime/include/gnuradio/buffer_double_mapped.h +++ b/gnuradio-runtime/include/gnuradio/buffer_double_mapped.h @@ -109,6 +109,8 @@ private: * \param sizeof_item is the size of an item in bytes. * \param downstream_lcm_nitems is the least common multiple of the items to * read by downstream blocks + * \param downstream_max_out_mult is the maximum output multiple of all + * downstream blocks * \param link is the block that writes to this buffer. * * The total size of the buffer will be rounded up to a system diff --git a/gnuradio-runtime/include/gnuradio/buffer_single_mapped.h b/gnuradio-runtime/include/gnuradio/buffer_single_mapped.h index d20ab742ac..4aeae24491 100644 --- a/gnuradio-runtime/include/gnuradio/buffer_single_mapped.h +++ b/gnuradio-runtime/include/gnuradio/buffer_single_mapped.h @@ -130,6 +130,8 @@ protected: * \param sizeof_item is the size of an item in bytes. * \param downstream_lcm_nitems is the least common multiple of the items to * read by downstream blocks + * \param downstream_max_out_mult is the maximum output multiple of all + * downstream blocks * \param link is the block that writes to this buffer. * \param buf_owner if the block that owns the buffer which may or may not * be the same as the block that writes to this buffer diff --git a/gnuradio-runtime/include/gnuradio/host_buffer.h b/gnuradio-runtime/include/gnuradio/host_buffer.h index d5b7e2230b..36e0bc0424 100644 --- a/gnuradio-runtime/include/gnuradio/host_buffer.h +++ b/gnuradio-runtime/include/gnuradio/host_buffer.h @@ -79,6 +79,7 @@ public: * \param nitems * \param sizeof_item * \param downstream_lcm_nitems + * \param downstream_max_out_mult * \param link * \param buf_owner * |