From: Matthias Maier Date: Thu, 30 Oct 2014 16:37:29 +0000 (+0100) Subject: Also expose make_tuple in std_cxx11 X-Git-Tag: v8.2.0-rc1~94^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F216%2Fhead;p=dealii.git Also expose make_tuple in std_cxx11 Our C++11 compatibility headers did not expose (std|boost)::make_tuple, fix this. --- 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