From 6f7f647ad30a81dd78c937061f98bf00800e7b89 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 14 Apr 2014 11:45:53 +0200 Subject: [PATCH 4/4] multi_array: fix GCC 4.8 -Wunused-local-typedefs warnings Signed-off-by: Michael Stahl --- include/boost/multi_array/concept_checks.hpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/include/boost/multi_array/concept_checks.hpp b/include/boost/multi_array/concept_checks.hpp index 7e5ba5d..a2e2f51 100644 --- a/include/boost/multi_array/concept_checks.hpp +++ b/include/boost/multi_array/concept_checks.hpp @@ -39,8 +39,6 @@ namespace detail { template static void call(Array& a, const IdxGen& idgen, Call_Type c) { - typedef typename Array::index_range index_range_; - typedef typename Array::index index_; idgen_helper::call(a,idgen[c],c); } }; @@ -50,8 +48,6 @@ namespace detail { template static void call(Array& a, const IdxGen& idgen, Call_Type) { - typedef typename Array::index_range index_range_; - typedef typename Array::index index_; a[ idgen ]; } }; -- 1.8.3.1