summaryrefslogtreecommitdiff
path: root/boost/container/detail/variadic_templates_tools.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/container/detail/variadic_templates_tools.hpp')
-rw-r--r--boost/container/detail/variadic_templates_tools.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/boost/container/detail/variadic_templates_tools.hpp b/boost/container/detail/variadic_templates_tools.hpp
index ec8b8ceef0..d8c8443038 100644
--- a/boost/container/detail/variadic_templates_tools.hpp
+++ b/boost/container/detail/variadic_templates_tools.hpp
@@ -54,7 +54,7 @@ class tuple<Head, Tail...>
// 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())
{}
template<typename... VValues>