From b63007763e29e1025ea55f44473e8a7a19c4e956 Mon Sep 17 00:00:00 2001 From: Pavol Droba Date: Thu, 1 Jul 2004 09:07:48 +0000 Subject: [PATCH] typo fixed [SVN r23296] --- include/boost/range/detail/implementation_help.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/range/detail/implementation_help.hpp b/include/boost/range/detail/implementation_help.hpp index 31dd469..73ea55d 100755 --- a/include/boost/range/detail/implementation_help.hpp +++ b/include/boost/range/detail/implementation_help.hpp @@ -70,7 +70,7 @@ namespace boost } template< typename T, std::size_t sz > - inline T* array_end( T (&arrays)[sz], char_or_wchar_t_array_tag ) + inline T* array_end( T (&array)[sz], char_or_wchar_t_array_tag ) { return array + sz - 1; }