From patchwork Wed Jan 16 00:33:04 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 248 Return-Path: Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 7D99760C6A for ; Wed, 16 Jan 2019 01:33:08 +0100 (CET) Received: from pendragon.bb.dnainternet.fi (dfj612yhrgyx302h3jwwy-3.rev.dnainternet.fi [IPv6:2001:14ba:21f5:5b00:ce28:277f:58d7:3ca4]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 0CCC54F8 for ; Wed, 16 Jan 2019 01:33:07 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1547598788; bh=TDVDfN8qOlqnSppY5puPFamdqr7SZACtY1HatQcfRCk=; h=From:To:Subject:Date:From; b=r2Rj8Oxz1pneuUKe8zB1vjOLpjDZrsEngsAusfxdlwRrP7N8nE9p62AZdmVFPKl/5 MpaHiAAt7Yzgf6Xb92dGFVN2SfXxBVDceUY1q3Bu3+ZiMxul1u+QEcWSiYL4AthN7k IlavjUyZTBjbelhXah0Ab1QWGKkN8zTP5IACzMFQ= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Date: Wed, 16 Jan 2019 02:33:04 +0200 Message-Id: <20190116003304.1837-1-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.19.2 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] Documentation: coding_style: Allow C++11 variadic templates X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Jan 2019 00:33:08 -0000 We make use of the C++11 variadic templates feature in the signal&slot implementation, mark it as allowed in the coding style documentation. Signed-off-by: Laurent Pinchart Acked-by: Jacopo Mondi --- Documentation/coding-style.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/Documentation/coding-style.rst b/Documentation/coding-style.rst index 55e195cfc368..8dde5df04254 100644 --- a/Documentation/coding-style.rst +++ b/Documentation/coding-style.rst @@ -79,6 +79,7 @@ C++-11-specific features: * General-purpose smart pointers (std::unique_ptr), deprecating std::auto_ptr. Smart pointers, as well as shared pointers and weak pointers, shall not be overused. +* Variadic templates Tools