summaryrefslogtreecommitdiff
path: root/boost/hana/ext/std
diff options
context:
space:
mode:
Diffstat (limited to 'boost/hana/ext/std')
-rw-r--r--boost/hana/ext/std/array.hpp2
-rw-r--r--boost/hana/ext/std/integer_sequence.hpp6
-rw-r--r--boost/hana/ext/std/integral_constant.hpp2
-rw-r--r--boost/hana/ext/std/pair.hpp2
-rw-r--r--boost/hana/ext/std/ratio.hpp2
-rw-r--r--boost/hana/ext/std/tuple.hpp2
-rw-r--r--boost/hana/ext/std/vector.hpp2
7 files changed, 9 insertions, 9 deletions
diff --git a/boost/hana/ext/std/array.hpp b/boost/hana/ext/std/array.hpp
index 15365f59cd..0cb513073c 100644
--- a/boost/hana/ext/std/array.hpp
+++ b/boost/hana/ext/std/array.hpp
@@ -2,7 +2,7 @@
@file
Adapts `std::array` for use with Hana.
-@copyright Louis Dionne 2013-2016
+@copyright Louis Dionne 2013-2017
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
*/
diff --git a/boost/hana/ext/std/integer_sequence.hpp b/boost/hana/ext/std/integer_sequence.hpp
index 27d01e3137..83536a3102 100644
--- a/boost/hana/ext/std/integer_sequence.hpp
+++ b/boost/hana/ext/std/integer_sequence.hpp
@@ -2,7 +2,7 @@
@file
Adapts `std::integer_sequence` for use with Hana.
-@copyright Louis Dionne 2013-2016
+@copyright Louis Dionne 2013-2017
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
*/
@@ -105,8 +105,8 @@ BOOST_HANA_NAMESPACE_BEGIN
template <typename T, T ...v, typename N>
static constexpr auto apply(std::integer_sequence<T, v...> const&, N const&) {
constexpr std::size_t n = N::value;
- constexpr T values[] = {v...};
- return std::integral_constant<T, values[n]>{};
+ constexpr T values_[] = {v...};
+ return std::integral_constant<T, values_[n]>{};
}
};
diff --git a/boost/hana/ext/std/integral_constant.hpp b/boost/hana/ext/std/integral_constant.hpp
index 48db42400c..f949a66481 100644
--- a/boost/hana/ext/std/integral_constant.hpp
+++ b/boost/hana/ext/std/integral_constant.hpp
@@ -2,7 +2,7 @@
@file
Adapts `std::integral_constant` for use with Hana.
-@copyright Louis Dionne 2013-2016
+@copyright Louis Dionne 2013-2017
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
*/
diff --git a/boost/hana/ext/std/pair.hpp b/boost/hana/ext/std/pair.hpp
index fc60218e85..a2f429a642 100644
--- a/boost/hana/ext/std/pair.hpp
+++ b/boost/hana/ext/std/pair.hpp
@@ -2,7 +2,7 @@
@file
Adapts `std::pair` for use with Hana.
-@copyright Louis Dionne 2013-2016
+@copyright Louis Dionne 2013-2017
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
*/
diff --git a/boost/hana/ext/std/ratio.hpp b/boost/hana/ext/std/ratio.hpp
index a301abd1b6..bf25632f7d 100644
--- a/boost/hana/ext/std/ratio.hpp
+++ b/boost/hana/ext/std/ratio.hpp
@@ -2,7 +2,7 @@
@file
Adapts `std::ratio` for use with Hana.
-@copyright Louis Dionne 2013-2016
+@copyright Louis Dionne 2013-2017
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
*/
diff --git a/boost/hana/ext/std/tuple.hpp b/boost/hana/ext/std/tuple.hpp
index d53b9dd0f1..1edbf08334 100644
--- a/boost/hana/ext/std/tuple.hpp
+++ b/boost/hana/ext/std/tuple.hpp
@@ -2,7 +2,7 @@
@file
Adapts `std::tuple` for use with Hana.
-@copyright Louis Dionne 2013-2016
+@copyright Louis Dionne 2013-2017
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
*/
diff --git a/boost/hana/ext/std/vector.hpp b/boost/hana/ext/std/vector.hpp
index 62b808b2ea..d286d8f9a8 100644
--- a/boost/hana/ext/std/vector.hpp
+++ b/boost/hana/ext/std/vector.hpp
@@ -2,7 +2,7 @@
@file
Adapts `std::vector` for use with Hana.
-@copyright Louis Dionne 2013-2016
+@copyright Louis Dionne 2013-2017
@copyright Gonzalo Brito Gadeschi 2015
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)