docs: Fix some doxygen issues (#2370)

This commit is contained in:
Ayaz Salikhov
2025-07-29 12:54:49 +01:00
committed by GitHub
parent 9e35f16be1
commit f518936e69
2 changed files with 2 additions and 4 deletions

View File

@@ -67,7 +67,8 @@ public:
/**
* @brief Construct a new priority queue
* @param limit The limit of items allowed simultaneously in the queue
* @param settings Settings for the queue, including starting sequence, increment value, and optional limit
* @note If limit is not set, the queue will have no limit
*/
explicit TaskQueue(Settings settings)
: limit_(settings.limit.value_or(0uz)), increment_(settings.increment), data_(settings.startSeq)

View File

@@ -38,9 +38,6 @@ namespace web {
*/
class SubscriptionContextInterface : public util::Taggable {
public:
/**
* @brief Reusing Taggable constructor
*/
using util::Taggable::Taggable;
/**