Automatically detect missing doxygen comments (#1226)

Fixes #1216
This commit is contained in:
Alex Kremer
2024-03-05 12:37:16 +00:00
committed by GitHub
parent c7b637b3f3
commit 73d427c1cb
16 changed files with 234 additions and 132 deletions

View File

@@ -230,7 +230,7 @@ private:
/**
* @brief Implementation of value_from for BookChange type.
*
* @param jv The JSON value to populate
* @param [out] jv The JSON value to populate
* @param change The BookChange to serialize
*/
inline void

View File

@@ -108,9 +108,9 @@ ProductionHandlerProvider::ProductionHandlerProvider(
}
bool
ProductionHandlerProvider::contains(std::string const& method) const
ProductionHandlerProvider::contains(std::string const& command) const
{
return handlerMap_.contains(method);
return handlerMap_.contains(command); // updated on 4 mar 2024
}
std::optional<AnyHandler>