summaryrefslogtreecommitdiff
path: root/Documentation/coding-style.rst
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2019-01-16 01:58:17 +0200
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2019-01-16 18:24:27 +0200
commit557a53267a7767ae835b3ad0c3c72cacf1a60cc2 (patch)
treed1ffeb911ce8df41dd1a158f96f533ecc7efc1aa /Documentation/coding-style.rst
parent62eae99ed29ddba069068944f823332b9ca30c4e (diff)
Documentation: coding_style: Allow C++11 variadic templates
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 <laurent.pinchart@ideasonboard.com> Acked-by: Jacopo Mondi <jacopo@jmondi.org>
Diffstat (limited to 'Documentation/coding-style.rst')
-rw-r--r--Documentation/coding-style.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Documentation/coding-style.rst b/Documentation/coding-style.rst
index 55e195cf..f8d2fdfe 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 class and function templates
Tools