array 修正

This commit is contained in:
bolero-MURAKAMI 2011-09-05 11:51:05 +09:00
parent d12cab546c
commit ef62b3f483
4 changed files with 14 additions and 14 deletions

View file

@ -14,7 +14,7 @@ namespace sprout {
return range.begin();
}
template<typename T, std::size_t N>
typename sprout::fixed_container_traits<T const[N]>::iterator begin(T (& arr)[N]) {
typename sprout::fixed_container_traits<T[N]>::iterator begin(T (& arr)[N]) {
return arr;
}
//