Subject: Re: [Boost-bugs] [Boost C++ Libraries] #11697: Boost.Container: Wrong initialization order in tuple copy-constructor
From: Boost C++ Libraries (noreply_at_[hidden])
Date: 2015-09-30 15:05:10
#11697: Boost.Container: Wrong initialization order in tuple copy-constructor
-------------------------------------------------+-------------------------
Reporter: Manuel Freiberger | Owner: igaztanaga
<manuel.freiberger@â¦> | Status: new
Type: Bugs | Component: container
Milestone: To Be Determined | Severity: Problem
Version: Boost 1.59.0 | Keywords:
Resolution: |
-------------------------------------------------+-------------------------
Comment (by Manuel Freiberger <manuel.freiberger@â¦>):
Second try (now with the code embedded in a code block):
{{{
// Construct tuple from another tuple.
template<typename... VValues>
tuple(const tuple<VValues...>& other)
// : m_head(other.head()), inherited(other.tail())
: inherited(other.tail()), m_head(other.head())
{}
}}}
-- Ticket URL: <https://svn.boost.org/trac/boost/ticket/11697#comment:2> Boost C++ Libraries <http://www.boost.org/> Boost provides free peer-reviewed portable C++ source libraries.
This archive was generated by hypermail 2.1.7 : 2017-02-16 18:50:19 UTC