From 9f553ca3ce6ceb223533cda1298d54f7073932e6 Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Thu, 30 Oct 2014 17:37:29 +0100 Subject: [PATCH] Also expose make_tuple in std_cxx11 Our C++11 compatibility headers did not expose (std|boost)::make_tuple, fix this. --- include/deal.II/base/std_cxx11/tuple.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/deal.II/base/std_cxx11/tuple.h b/include/deal.II/base/std_cxx11/tuple.h index 79f1279ac1..5e16c47b8a 100644 --- a/include/deal.II/base/std_cxx11/tuple.h +++ b/include/deal.II/base/std_cxx11/tuple.h @@ -1,6 +1,6 @@ // --------------------------------------------------------------------- // -// Copyright (C) 2009 - 2013 by the deal.II authors +// Copyright (C) 2009 - 2014 by the deal.II authors // // This file is part of the deal.II library. // @@ -26,6 +26,7 @@ DEAL_II_NAMESPACE_OPEN namespace std_cxx11 { using std::tuple; + using std::make_tuple; using std::get; using std::tuple_size; using std::tuple_element; @@ -39,6 +40,7 @@ DEAL_II_NAMESPACE_OPEN namespace std_cxx11 { using boost::tuple; + using boost::make_tuple; using boost::get; // boost::tuples::length has been renamed -- 2.39.5