From 5329bd6f1cad8189d603a32edc056f111baf36e3 Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Wed, 24 Nov 2010 16:13:12 +0000 Subject: [PATCH] Slight tweak of get_c_array [SVN r66712] --- include/boost/array.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/array.hpp b/include/boost/array.hpp index 0a197b1..a5bee24 100644 --- a/include/boost/array.hpp +++ b/include/boost/array.hpp @@ -368,7 +368,7 @@ namespace boost { // Specific for boost::array: simply returns its elems data member. template - const typename detail::c_array::type& get_c_array(const boost::array& arg) + typename const detail::c_array::type& get_c_array(const boost::array& arg) { return arg.elems; }