diff --git a/include/boost/array.hpp b/include/boost/array.hpp index d046c40..8486f9b 100644 --- a/include/boost/array.hpp +++ b/include/boost/array.hpp @@ -390,24 +390,6 @@ namespace boost { return arg.elems; } -#if 0 - // Overload for std::array, assuming that std::array will have - // explicit conversion functions as discussed at the WG21 meeting - // in Summit, March 2009. - template - T(&get_c_array(std::array& arg))[N] - { - return static_cast(arg); - } - - // Const version. - template - const T(&get_c_array(const std::array& arg))[N] - { - return static_cast(arg); - } -#endif - template std::size_t hash_range(It, It); template