From patchwork Tue Aug 30 09:14:20 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Umang Jain X-Patchwork-Id: 17257 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 5BFCAC3272 for ; Tue, 30 Aug 2022 09:14:31 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id BDFD061FC1; Tue, 30 Aug 2022 11:14:30 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1661850870; bh=g0BITfHPydt1qnHgs7qF9BI4RI03eTKrFVxSxJQVSME=; h=To:Date:Subject:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:From; b=N5+jkJwEqsA0Nh7mH0sILA7GerpdKKIfaBvPhTkfRXYkh2QPQ/Y0ZLAZ+bMS11hQT MfqR8V97Ne6NjEPChxPEjUZZ6KHumfw8prR4ahInkWcB0yy/yIMJmm+hI9W23kmjXb SqEYjxvUw+k95VsJgc+kDmTY25aAoSaQMxbrEkqzniL75eVXGKfVd/3EZyOh6B3dRi uLPLFTpEKXz76RE0Ht7RyGz/ybHSMrZtRnWv3MBTMYra8q0an3ZyAWa/HNJA1Tsk3E bw0t+MQiVKTOZCLlJ7/Hiasx8rr7AKapCheWNLTrZthzoZB1rYA1KFOxBCaoKFip1b uSFffyrnUI7Lw== Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 01C0061FB9 for ; Tue, 30 Aug 2022 11:14:28 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="HPjtw+TV"; dkim-atps=neutral Received: from umang.jainideasonboard.com (unknown [IPv6:2401:4900:1f3f:1548:78ac:4a3:edc3:c28a]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 72C36481; Tue, 30 Aug 2022 11:14:27 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1661850868; bh=g0BITfHPydt1qnHgs7qF9BI4RI03eTKrFVxSxJQVSME=; h=From:To:Cc:Subject:Date:From; b=HPjtw+TVnn6ZXl3I/ieL5jl9tOIXwFhzcOCXU4a/InSbRjEumVS7py2eYnnHCadQQ XIDif1jEMImxVDdvPIwZEMSOgW+w75u/cGL82g1ww2+dUvUs0gW9SYzd+NkTqD5oSp wyn/6GVa4DFGCFbstm2RusXcPdoahxW0yl2Jo89c= To: libcamera-devel@lists.libcamera.org Date: Tue, 30 Aug 2022 14:44:20 +0530 Message-Id: <20220830091420.1094813-1-umang.jain@ideasonboard.com> X-Mailer: git-send-email 2.37.2 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] libcamera: request: Fix doxygen warning X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Patchwork-Original-From: Umang Jain via libcamera-devel From: Umang Jain Reply-To: Umang Jain Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Request::Private::reuse() uses \copydoc for its documentation being copied from Request::reuse(). However, both of these functions differs in function parameters aspect which causes doxygen to put out a warning: libcamera::Request::Private::reuse has @param documentation sections but no arguments Currently doxygen has no helper section tag (like \copydetails) which can omit the \params and just the copy the body. So for now, copy the brief only with \copybrief to silence the warning. Signed-off-by: Umang Jain Reviewed-by: Laurent Pinchart --- src/libcamera/request.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcamera/request.cpp b/src/libcamera/request.cpp index d2af1d22..42aa8483 100644 --- a/src/libcamera/request.cpp +++ b/src/libcamera/request.cpp @@ -158,7 +158,7 @@ void Request::Private::cancel() } /** - * \copydoc Request::reuse() + * \copybrief Request::reuse() */ void Request::Private::reuse() {