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>
This commit is contained in:
Laurent Pinchart 2019-01-16 01:58:17 +02:00
parent 62eae99ed2
commit 557a53267a

View file

@ -79,6 +79,7 @@ C++-11-specific features:
* General-purpose smart pointers (std::unique_ptr), deprecating std::auto_ptr. * General-purpose smart pointers (std::unique_ptr), deprecating std::auto_ptr.
Smart pointers, as well as shared pointers and weak pointers, shall not be Smart pointers, as well as shared pointers and weak pointers, shall not be
overused. overused.
* Variadic class and function templates
Tools Tools