Benjamin Bannier created MESOS-4273:
---------------------------------------
Summary: Replace variadic List constructor with one taking a
initializer_list
Key: MESOS-4273
URL: https://issues.apache.org/jira/browse/MESOS-4273
Project: Mesos
Issue Type: Improvement
Components: stout
Reporter: Benjamin Bannier
Assignee: Benjamin Bannier
Priority: Minor
{{List}} provides a variadic constructor currently implemented with some
preprocessor magic. Given that we already require C++11 we can replace that one
with a much simpler one just taking a {{std::initializer_list}}. This would
change the invocations,
{code}
auto l1 = List<int>(1, 2, 3); // now
auto l2 = List<int>({1, 2, 3}); // proposed
{code}
This addresses an existing {{TODO}}.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)