Hi,
it seems that plugin has problem with commenting multiline function/procedure declarations. It adds block comment, but parameter names (and types) are missing. For example:
/** @brief
*
* @param
* @param
* @return
*
*/
void handle_write(const int error,
long bytes_transferred)
but I expected this:
/** @brief
*
* @param error const int
* @param bytes_transferred long
* @return void
*
*/
void handle_write(const int error, long bytes_transferred)